From 4aa55b6b26ee031dd9f50ddc7c6d4e5afa1c3dad Mon Sep 17 00:00:00 2001 From: plcnk Date: Fri, 16 Aug 2024 12:19:54 +0200 Subject: [PATCH] fix(actions): Fix linting workflow --- .github/ct-lint-config.yaml | 1 + .github/workflows/lint-test.yaml | 8 +++----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/ct-lint-config.yaml b/.github/ct-lint-config.yaml index 244e193..08d2dbb 100644 --- a/.github/ct-lint-config.yaml +++ b/.github/ct-lint-config.yaml @@ -1,2 +1,3 @@ debug: true all: true +validate-maintainers: false diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index b5d4e42..ef4ccc7 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -24,7 +24,9 @@ jobs: uses: helm/chart-testing-action@v2.6.1 - name: Run chart-testing (lint) - run: ct lint --config .github/ct-lint-config.yaml + run: | + helm repo add bjw-s https://bjw-s.github.io/helm-charts + ct lint --config .github/ct-lint-config.yaml test: runs-on: ubuntu-latest @@ -46,10 +48,6 @@ jobs: if [[ -n "$changed" ]]; then echo "changed=true" >> $GITHUB_OUTPUT fi - - name: Run chart-testing (lint) - run: | - helm repo add bjw-s https://bjw-s.github.io/helm-charts - ct lint --chart-dirs charts --all - name: Create kind cluster uses: helm/kind-action@v1.10.0