Skip to content

Commit

Permalink
dep: update golangci lint action and disable exportloopref
Browse files Browse the repository at this point in the history
  • Loading branch information
rajrohanyadav committed Feb 12, 2025
1 parent eaebcc9 commit d0d52d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/_static_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ jobs:
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v6
continue-on-error: ${{ github.event_name != 'pull_request' }}
with:
only-new-issues: true
skip-cache: true
# As of Go 1.22, this problem no longer occurs and fixed by Go team
# https://github.com/kyoh86/exportloopref
args: --disable=exportloopref
- name: Check if CHANGELOG is valid
uses: newrelic/release-toolkit/validate-markdown@v1

0 comments on commit d0d52d0

Please sign in to comment.