From 4a5c56cad957ce7a02e6e3904cb28f8bd85c512f Mon Sep 17 00:00:00 2001 From: "Paul S. Schweigert" Date: Wed, 1 Nov 2023 17:47:09 -0400 Subject: [PATCH] bump helm chart-testing-action Signed-off-by: Paul S. Schweigert --- .github/actions/helm-lint/action.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/helm-lint/action.yaml b/.github/actions/helm-lint/action.yaml index a8f34f422..ed939c3f7 100644 --- a/.github/actions/helm-lint/action.yaml +++ b/.github/actions/helm-lint/action.yaml @@ -8,16 +8,16 @@ runs: uses: azure/setup-helm@v1 with: version: v3.12.1 - + # Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and # yamllint (https://github.com/adrienverge/yamllint) which require Python - uses: actions/setup-python@v4 with: python-version: '3.9' check-latest: true - + - name: Set up chart-testing - uses: helm/chart-testing-action@v2.4.0 + uses: helm/chart-testing-action@v2.5.0 - name: Run chart-testing (list-changed) shell: bash @@ -27,12 +27,12 @@ runs: if [[ -n "$changed" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" fi - + - name: Run chart-testing (lint) shell: bash if: steps.list-changed.outputs.changed == 'true' run: ct lint --config ct.yaml --check-version-increment=false - + # - name: Create kind cluster # if: steps.list-changed.outputs.changed == 'true' # uses: helm/kind-action@v1.7.0