Skip to content

Commit

Permalink
update lint workflow to use same version actions as other workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Jun 26, 2024
1 parent ad94ba3 commit 61056f3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
- uses: actions/checkout@v4

- name: install go 1.21
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: "1.21"

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout 3m
args: --timeout 3m

0 comments on commit 61056f3

Please sign in to comment.