chore: upgrade CA to 1.6.3 #26
This file contains 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: Checkov security test | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "**/*.tf" | |
- ".github/workflows/checkov.yml" | |
jobs: | |
checkov_security: | |
name: Checkov security tests | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
pull-requests: read | |
checks: write | |
security-events: write | |
actions: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: prepare reports dir | |
run: mkdir --parents ${{runner.temp}}/reports_sast_terraform/ | |
- name: install checkov | |
run: | | |
pip3 install --upgrade checkov | |
echo $PATH | |
checkov --version | |
which checkov | |
- name: generate json report | |
run: > | |
checkov | |
--config-file .config/sast_terraform_checkov_json.yml | |
--directory . | |
--output cli | |
--output json | |
--output sarif | |
--output-file-path console,checkov-terraform-results.json,checkov-terraform-results.sarif |