This is an automated email from the ASF dual-hosted git repository.
mmodzelewski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new a114eb5d7 fix(ci): align local golangci-lint version with CI (#3719)
a114eb5d7 is described below
commit a114eb5d778851bbf30020c2533ae83f9bc64dce
Author: Alan Tang <[email protected]>
AuthorDate: Tue Jul 21 18:28:06 2026 +0800
fix(ci): align local golangci-lint version with CI (#3719)
---
.pre-commit-config.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 67ecaaaa0..92efd1602 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -233,7 +233,7 @@ repos:
entry: bash -c 'cd foreign/go && golangci-lint run --timeout=5m ./...'
language: golang
additional_dependencies:
- ["github.com/golangci/golangci-lint/cmd/[email protected]"]
+ ["github.com/golangci/golangci-lint/v2/cmd/[email protected]"]
files: ^foreign/go/.*\.go$
pass_filenames: false
stages: [pre-push]
@@ -243,7 +243,7 @@ repos:
entry: bash -c 'cd bdd/go && golangci-lint run --timeout=5m ./...'
language: golang
additional_dependencies:
- ["github.com/golangci/golangci-lint/cmd/[email protected]"]
+ ["github.com/golangci/golangci-lint/v2/cmd/[email protected]"]
files: ^bdd/go/.*\.go$
pass_filenames: false
stages: [pre-push]
@@ -253,7 +253,7 @@ repos:
entry: bash -c 'cd examples/go && golangci-lint run --timeout=5m ./...'
language: golang
additional_dependencies:
- ["github.com/golangci/golangci-lint/cmd/[email protected]"]
+ ["github.com/golangci/golangci-lint/v2/cmd/[email protected]"]
files: ^examples/go/.*\.go$
pass_filenames: false
stages: [pre-push]