This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git
The following commit(s) were added to refs/heads/main by this push:
new 41dc23ac chore: fix the pre-commit config to properly point at
golangci-lint url (#704)
41dc23ac is described below
commit 41dc23ac9662cabc17dcc1d33bc434e84b148c26
Author: Matt Topol <[email protected]>
AuthorDate: Wed Jan 28 14:47:47 2026 -0500
chore: fix the pre-commit config to properly point at golangci-lint url
(#704)
---
.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 d1bf3aba..7793295f 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -18,9 +18,9 @@
files: ^go/
repos:
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.4.0
+ - repo: https://github.com/golangci/golangci-lint
+ rev: v2.8.0
hooks:
- id: golangci-lint
- entry: bash -c 'cd iceberg && golangci-lint run --fix --timeout 5m'
+ entry: bash -c 'golangci-lint run --fix --timeout 5m'
types_or: [go]