diff --git a/.github/workflows/helm-lint.yaml b/.github/workflows/helm-lint.yaml index 6b2d6fb3..99773dd6 100644 --- a/.github/workflows/helm-lint.yaml +++ b/.github/workflows/helm-lint.yaml @@ -23,4 +23,4 @@ jobs: uses: helm/chart-testing-action@v2.2.0 - name: Run chart-testing (lint) - run: ct lint --target-branch ${{ github.ref_name }} --charts ./charts/ + run: ct lint --target-branch ${{ github.ref_name }} --config ./charts/ct.yaml diff --git a/.github/workflows/helm-test.yaml b/.github/workflows/helm-test.yaml index 389d6550..7f1138bb 100644 --- a/.github/workflows/helm-test.yaml +++ b/.github/workflows/helm-test.yaml @@ -30,7 +30,7 @@ jobs: - name: Run chart-testing (list-changed) id: list-changed run: | - changed=$(ct list-changed --target-branch ${{ github.ref_name }}) + changed=$(ct list-changed --config ./charts/ct.yaml --target-branch ${{ github.ref_name }}) if [[ -n "$changed" ]]; then echo "changed=true" >> $GITHUB_OUTPUT fi