From 5caaa88d51d8dfba6bb4612855904ebf715de54d Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Wed, 17 Jul 2024 18:19:58 +0300 Subject: [PATCH] scripts/test-infra: bump helm to v3.15.3 Helm is used for linting the chart in the CI. --- scripts/test-infra/verify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-infra/verify.sh b/scripts/test-infra/verify.sh index 30b76cf69..a0bc89766 100755 --- a/scripts/test-infra/verify.sh +++ b/scripts/test-infra/verify.sh @@ -7,7 +7,7 @@ gobinpath="$(go env GOPATH)/bin" curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b "$gobinpath" v1.59.1 export PATH=$PATH:$(go env GOPATH)/bin -curl -sfL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash -s -- --version v3.14.0 +curl -sfL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash -s -- --version v3.15.3 kubectl="$gobinpath/kubectl" curl -L https://dl.k8s.io/release/v1.22.1/bin/linux/amd64/kubectl -o "$kubectl"