From 59712e991790b3d3d4bca7fccb95a752ab4b2da7 Mon Sep 17 00:00:00 2001 From: Ivy Gooch Date: Wed, 3 May 2023 23:28:44 +0000 Subject: [PATCH] Updating the linter to version that supports for Go 1.20 --- build/build-image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build-image/Dockerfile b/build/build-image/Dockerfile index 2561fb7991..6ca6c86d7d 100644 --- a/build/build-image/Dockerfile +++ b/build/build-image/Dockerfile @@ -67,7 +67,7 @@ RUN curl -L ${HELM_URL} > /tmp/helm.tar.gz \ RUN echo "source <(helm completion bash)" >> /root/.bashrc # install golang-ci linter -RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.49.0 +RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.2 # install gotestsum test runner RUN go install gotest.tools/gotestsum@latest