bugfix app id #954
Workflow file for this run
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: Security Check - Checkov for Terraform | |
on: [pull_request, push] | |
jobs: | |
checkov: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
# security-events: write | |
steps: | |
- name: Setup GitHub Actions | |
uses: actions/checkout@master | |
- name: Run Checkov on CI/CD Module | |
uses: bridgecrewio/checkov-action@master | |
with: | |
directory: ./iac/cicd | |
framework: terraform | |
soft_fail: true | |
download_external_modules: true | |
output_format: cli,sarif | |
output_file_path: console,results.sarif | |
- name: Run Checkov on Fraud Module | |
uses: bridgecrewio/checkov-action@master | |
with: | |
directory: ./iac/fraud | |
framework: terraform | |
soft_fail: true | |
download_external_modules: true | |
output_format: cli,sarif | |
output_file_path: console,results.sarif | |
# - name: Upload Artifact | |
# uses: github/codeql-action/upload-sarif@master | |
# if: success() || failure() | |
# with: | |
# sarif_file: results.sarif |