From 3080c4ee53596f5cdffc8025a9ecea06e5660bfc Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Wed, 23 Sep 2020 10:33:28 +0000 Subject: [PATCH] test: upgrade golint version --- hack/verify-golint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-golint.sh b/hack/verify-golint.sh index 997e55d3e..11d791fc6 100755 --- a/hack/verify-golint.sh +++ b/hack/verify-golint.sh @@ -18,7 +18,7 @@ set -euo pipefail if [[ -z "$(command -v golangci-lint)" ]]; then echo "Cannot find golangci-lint. Installing golangci-lint..." - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.30.0 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.31.0 fi golangci-lint run --no-config --enable=golint --disable=typecheck --deadline=10m