Skip to content

chore(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 #109

chore(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0

chore(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 #109

Workflow file for this run

# lint runs golangci-lint
name: lint
on:
pull_request:
push:
branches:
- main
- release/**
env:
GO_VERSION: '1.21'
jobs:
golangci-lint:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- uses: golangci/[email protected]
with:
version: v1.54.0
args: --timeout 10m
github-token: ${{ secrets.github_token }}