aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
authorJacob Oaks <joaks@uber.com>2024-04-29 13:39:10 -0400
committerJacob Oaks <joaks@uber.com>2024-04-29 13:39:10 -0400
commit9f2ab0b2b6d5764cd138e2fe64590dffe880396d (patch)
tree9849b70f364867366322dfdde5191d4c2fcf7951 /.github/workflows/go.yml
parentd7c76afa342c98220281bdadb7fcf2598e48624b (diff)
downloadsally-9f2ab0b2b6d5764cd138e2fe64590dffe880396d.tar.gz
CI: Fix golangci-lint installation step
Following https://github.com/uber-go/zap/pull/1424 and https://github.com/uber-go/fx/pull/1185 as examples. `--version` is no longer accepted. Use `--help` instead.
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r--.github/workflows/go.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index e8e084e..8beec33 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -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