Skip to content

Commit

Permalink
Upgrade golangci-lint github action
Browse files Browse the repository at this point in the history
The old version used to cause errors, and according to this thread
(golangci/golangci-lint-action#135) the error
is fixe din v6
  • Loading branch information
zohar7ch committed Feb 13, 2025
1 parent a0b45e2 commit da8f0a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
working-directory: linters

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

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

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

0 comments on commit da8f0a3

Please sign in to comment.