Skip to content

Commit

Permalink
fix conftest download url
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 e4a1fe2 commit fce18bf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/helm-conftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ jobs:
uses: actions/[email protected]

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

- 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/
curl -sSL https://github.com/open-policy-agent/conftest/releases/download/v0.55.0/conftest_0.55.0_Linux_x86_64.tar.gz -o conftest.tar.gz
tar -xzvf conftest.tar.gz -C /usr/local/bin/
chmod +x /usr/local/bin/conftest
rm conftest.tar.gz
- name: Validate all charts
run: bash ci/helm-conftest.sh

0 comments on commit fce18bf

Please sign in to comment.