Skip to content

Commit da8f0a3

Browse files
committed
Upgrade golangci-lint github action
The old version used to cause errors, and according to this thread (golangci/golangci-lint-action#135) the error is fixe din v6
1 parent a0b45e2 commit da8f0a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
working-directory: linters
4848

4949
- name: golangci-lint
50-
uses: golangci/golangci-lint-action@v3
50+
uses: golangci/golangci-lint-action@v6
5151
with:
5252
install-mode: goinstall
5353
# plugin versions (errorsnew in our case) has to use same versions of packages and go as specified in the main project's go.mod
@@ -59,7 +59,7 @@ jobs:
5959
working-directory: src
6060

6161
# Optional: golangci-lint command line arguments.
62-
args: --timeout 5m --out-format github-actions
62+
args: --timeout 5m --out-format colored-line-number
6363

6464
# Optional: show only new issues if it's a pull request. The default value is `false`.
6565
# only-new-issues: true

0 commit comments

Comments
 (0)