Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update dependency golangci/golangci-lint to v1.60.3 #848

Merged
merged 3 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: golangci/golangci-lint-action@v6
with:
# Required: the version of golangci-lint is required and must be specified with patch version
version: v1.60.1 # renovate: datasource=github-releases depName=golangci/golangci-lint
version: v1.60.3 # renovate: datasource=github-releases depName=golangci/golangci-lint
# In general linting is quite fast with warm caches, but a fresh run might take some time.
args: --timeout 5m

Expand Down
6 changes: 6 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ linters-settings:
exported: true
import-shadowing: true
indent-error-flow: true
gosec:
excludes:
# As of golangci-lint v1.60.3, this rule is still enabled by default, which causes problems.
# We disable it manually for now until a new golangci-lint version is released which fixes this.
# See https://github.com/securego/gosec/issues/1185
- G115

linters:
disable-all: true
Expand Down