From b43128a8b25298e1e7b043b78ea6613844e079b1 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Tue, 31 Oct 2023 15:42:30 +0100 Subject: [PATCH] bump ct to v3.10.0 (#134) Signed-off-by: cpanato --- .github/workflows/test-action.yml | 10 +++++----- README.md | 2 +- action.yml | 4 ++-- ct.sh | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index 41020b7..4fe55a9 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -17,8 +17,8 @@ jobs: ct version CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null) ACTUAL_VERSION=$(echo "$CT_VERSION_OUTPUT" | grep Version | rev | cut -d ' ' -f1 | rev) - if [[ $ACTUAL_VERSION != 'v3.9.0' ]]; then - echo 'should be v3.9.0' + if [[ $ACTUAL_VERSION != 'v3.10.0' ]]; then + echo 'should be v3.10.0' exit 1 else exit 0 @@ -42,7 +42,7 @@ jobs: - name: Install chart-testing uses: ./ with: - version: 'v3.7.1' + version: 'v3.8.0' yamllint_version: '1.27.1' yamale_version: '3.0.4' - name: Check install! @@ -50,8 +50,8 @@ jobs: ct version CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null) ACTUAL_VERSION=$(echo "$CT_VERSION_OUTPUT" | grep Version | rev | cut -d ' ' -f1 | rev) - if [[ $ACTUAL_VERSION != 'v3.7.1' ]]; then - echo 'should be v3.7.1' + if [[ $ACTUAL_VERSION != 'v3.8.0' ]]; then + echo 'should be v3.8.0' exit 1 else exit 0 diff --git a/README.md b/README.md index 6381ea5..55d92f9 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ jobs: check-latest: true - name: Set up chart-testing - uses: helm/chart-testing-action@v2.5.0 + uses: helm/chart-testing-action@v2.6.0 - name: Run chart-testing (list-changed) id: list-changed diff --git a/action.yml b/action.yml index 6324f52..8f08990 100644 --- a/action.yml +++ b/action.yml @@ -6,9 +6,9 @@ branding: icon: anchor inputs: version: - description: "The chart-testing version to install (default: 3.9.0)" + description: "The chart-testing version to install (default: 3.10.0)" required: false - default: '3.9.0' + default: '3.10.0' yamllint_version: description: "The yamllint version to install (default: 1.27.1)" required: false diff --git a/ct.sh b/ct.sh index 9f1dad6..4432ed9 100755 --- a/ct.sh +++ b/ct.sh @@ -4,7 +4,7 @@ set -o errexit set -o nounset set -o pipefail -DEFAULT_CHART_TESTING_VERSION=3.9.0 +DEFAULT_CHART_TESTING_VERSION=3.10.0 DEFAULT_YAMLLINT_VERSION=1.27.1 DEFAULT_YAMALE_VERSION=3.0.4