diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 38dc2e68..1d536b2f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,9 +11,20 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Set up Helm + uses: azure/setup-helm@v1 + with: + version: v3.4.0 - - name: Fetch history - run: git fetch --prune --unshallow + - uses: actions/setup-python@v2 + with: + python-version: 3.7 + + - name: Set up chart-testing + uses: helm/chart-testing-action@v2.1.0 - name: Test dependencies run: | @@ -22,11 +33,7 @@ jobs: .github/dependency_as_file.sh community-operator-crds community-operator - name: Run chart-testing (lint) - id: lint - uses: helm/chart-testing-action@v1.0.0 - with: - command: lint - config: .github/ct.yaml + run: ct lint --config .github/ct.yaml kubeval-chart: runs-on: ubuntu-latest