This repository was archived by the owner on Oct 21, 2025. It is now read-only.
Update dependency checkov to v3.2.470 (#1213) #2442
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Policy Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| kyverno: | |
| name: Kyverno tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Get kyverno | |
| run: wget -q -O - https://github.com/kyverno/kyverno/releases/download/v1.6.2/kyverno-cli_v1.6.2_linux_x86_64.tar.gz | tar -C /usr/local/bin -xzf - kyverno | |
| - name: Kyverno tests | |
| run: kyverno test kubernetes/kyverno | |
| checkov: | |
| name: Checkov tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Get checkov | |
| run: pip install -r requirements.txt | |
| - name: Setup BATS | |
| uses: mig4/setup-bats@af9a00deb21b5d795cabfeaa8d9060410377686d # tag=v1 | |
| with: | |
| bats-version: 1.6.0 | |
| - name: BATS tests | |
| run: bats infra/checkov/test.bats |