From 8d32e802257c910b639fe3666aba1fbd0d4b3a37 Mon Sep 17 00:00:00 2001 From: marcel2012 <13705842+marcel2012@users.noreply.github.com> Date: Tue, 22 Jul 2025 22:29:17 +0200 Subject: [PATCH] Go: Bump golangci-lint to v2.3.0, fix link in comment --- hack/verify-golint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/verify-golint.sh b/hack/verify-golint.sh index 17bcedd9fc..b2fb22df70 100755 --- a/hack/verify-golint.sh +++ b/hack/verify-golint.sh @@ -26,8 +26,8 @@ LINT=${LINT:-golangci-lint} if [[ -z "$(command -v ${LINT})" ]]; then echo "${LINT} is missing. Installing it now." - # See: https://golangci-lint.run/usage/install/#local-installation - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.53.3 + # See: https://golangci-lint.run/welcome/install/#local-installation + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.3.0 LINT=$(go env GOPATH)/bin/golangci-lint fi