Skip to content

feat: test checkov github-action in public module #19

feat: test checkov github-action in public module

feat: test checkov github-action in public module #19

Workflow file for this run

---
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
...