From c578ab01a7027459a8e22442ca7376a2130366ae Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 5 Aug 2020 08:40:58 +0200 Subject: [PATCH] ci: pass HELM_VERSION when installing Helm in test container Signed-off-by: Niels de Vos --- scripts/Dockerfile.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dockerfile.test b/scripts/Dockerfile.test index c645bdbfd..bd2a45cc5 100644 --- a/scripts/Dockerfile.test +++ b/scripts/Dockerfile.test @@ -40,7 +40,7 @@ RUN source /build.env \ | bash -s -- -b ${GOPATH}/bin "${GOLANGCI_VERSION}" \ && curl -sfL "https://raw.githubusercontent.com/securego/gosec/master/install.sh" \ | sh -s -- -b $GOPATH/bin "${GOSEC_VERSION}" \ - && curl -L https://git.io/get_helm.sh | bash \ + && curl -L https://git.io/get_helm.sh | bash -s -- --version "${HELM_VERSION}" \ && mkdir /opt/commitlint && pushd /opt/commitlint \ && npm init -y \ && npm install @commitlint/cli \