Skip to content

chore(deps): Bump golangci/golangci-lint-action from 5.1.0 to 5.3.0 #246

chore(deps): Bump golangci/golangci-lint-action from 5.1.0 to 5.3.0

chore(deps): Bump golangci/golangci-lint-action from 5.1.0 to 5.3.0 #246

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@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: golangci/golangci-lint-action@v5.3.0
with:
version: v1.54.0
args: --timeout 10m
github-token: ${{ secrets.github_token }}