From d1d36656cea30a2d1c7c194fc3c2b06aecf958bd Mon Sep 17 00:00:00 2001 From: Pritesh Lahoti Date: Wed, 27 Nov 2024 11:48:24 +0530 Subject: [PATCH] [CRDB-44987] lint: upgrade helmpack/chart-testing The current version v3.3.1 of helmpack/chart-testing is 4 years old and comes bundled with older version of Helm wtih limited feature set. Upgrade to the latest v3.11.0 (7 months old). --- build/lint.sh | 2 +- build/tester.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/lint.sh b/build/lint.sh index 3fad2f88..a9498ca5 100755 --- a/build/lint.sh +++ b/build/lint.sh @@ -2,4 +2,4 @@ set -euox pipefail -build/tester.sh ct lint --config build/ct.yaml --all +build/tester.sh ct lint --config build/ct.yaml --all --validate-maintainers=false diff --git a/build/tester.sh b/build/tester.sh index d56b7705..1e9c1a99 100755 --- a/build/tester.sh +++ b/build/tester.sh @@ -3,7 +3,7 @@ set -euo pipefail image="quay.io/helmpack/chart-testing" -version="v3.3.1" +version="v3.11.0" if [ "${1-}" = "pull" ]; then docker pull "${image}:${version}"