diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 2cde2e58..bd624c38 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -26,7 +26,7 @@ jobs: # Require: The version of golangci-lint to use. # When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version. # When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit. - version: v1.60.1 + version: v1.60.3 # Optional: working directory, useful for monorepos # working-directory: somedir diff --git a/.golangci.yml b/.golangci.yml index bf818a8b..28d5417d 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -96,6 +96,7 @@ linters-settings: excludes: - G107 # variables in URLs - G404 # use of weak random generator + - G115 # Disable for now due to the *many* warnings gocritic: disabled-checks: diff --git a/Makefile b/Makefile index f394c8f9..b7134249 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ generate: tidy # Coding style static check. lint: tidy - @go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.1 + @go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3 @go mod tidy golangci-lint run