feat: test checkov github-action in public module #19
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 | |
on: | |
push: | |
pull_request: | |
jobs: | |
scan: | |
permissions: | |
contents: read | |
security-events: read | |
actions: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkov GitHub Action | |
uses: bridgecrewio/checkov-action@v12 | |
with: | |
# This will add both a CLI output to the console and create a results.sarif file | |
output_format: cli | |
output_file_path: console | |
skip_path: "./" | |
continue-on-error: true | |
... |