From d69e117da0c7675190bf625e73f7c7ca45b00357 Mon Sep 17 00:00:00 2001 From: Mufengzhe <1394298614@qq.com> Date: Tue, 22 Aug 2023 17:16:00 +0800 Subject: [PATCH] update the version of golangci-lint --- hack/verify-golangci-lint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-golangci-lint.sh b/hack/verify-golangci-lint.sh index c5f56220a6f..cd45aa8c3ac 100755 --- a/hack/verify-golangci-lint.sh +++ b/hack/verify-golangci-lint.sh @@ -27,7 +27,7 @@ function check_golangci-lint() { command -v golangci-lint >/dev/null 2>&1 if [[ $? -ne 0 ]]; then echo "installing golangci-lint ." - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.50.0 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2 if [[ $? -ne 0 ]]; then echo "golangci-lint installed failed, exiting." exit 1