Skip to content

Commit

Permalink
CI: Fix golangci-lint installation step
Browse files Browse the repository at this point in the history
Following uber-go/zap#1424 and
uber-go/fx#1185 as examples.

`--version` is no longer accepted. Use `--help` instead.
  • Loading branch information
JacobOaks committed Apr 29, 2024
1 parent d7c76af commit 9f2ab0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
name: Install golangci-lint
with:
version: latest
args: --version # make lint will run the linter
args: --help # make lint will run the linter

- run: make lint
name: Lint
Expand Down

0 comments on commit 9f2ab0b

Please sign in to comment.