Skip to content

Commit

Permalink
fix: helm-conftest step
Browse files Browse the repository at this point in the history
Signed-off-by: Brenno Oliveira <[email protected]>
  • Loading branch information
brennoo committed Aug 19, 2024
1 parent b55741a commit 7cdd71e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/helm-conftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,19 @@ jobs:
name: Run conftest for all charts
runs-on: ubuntu-latest
container:
image: instrumenta/helm-conftest:latest
image: alpine/helm:latest
steps:
- name: Checkout Code
uses: actions/[email protected]

- name: Install Dependencies
run: apk add --no-cache curl

- name: Install Conftest
run: |
curl -sSL https://github.com/open-policy-agent/conftest/releases/latest/download/conftest-linux-amd64 -o conftest
chmod +x conftest
mv conftest /usr/local/bin/
- name: Validate all charts
run: bash ci/helm-conftest.sh

0 comments on commit 7cdd71e

Please sign in to comment.