From 9f2ab0b2b6d5764cd138e2fe64590dffe880396d Mon Sep 17 00:00:00 2001 From: Jacob Oaks Date: Mon, 29 Apr 2024 13:39:10 -0400 Subject: 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. --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/go.yml') 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 -- cgit v1.2.3