Merge pull request #39 from Digitalist-Open-Cloud/pre_upgrade_with_ex… #133
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
on: [push] | |
jobs: | |
checkov-job: | |
runs-on: ubuntu-latest | |
name: checkov-action | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@master | |
- name: Run Checkov action | |
id: checkov | |
uses: bridgecrewio/checkov-action@master | |
with: | |
directory: charts/matomo | |
quiet: false # optional: display only failed checks | |
soft_fail: true # optional: do not return an error code if there are failed checks | |
framework: helm # optional: run only on a specific infrastructure {cloudformation,terraform,kubernetes,all} | |
output_format: sarif # optional: the output format, one of: cli, json, junitxml, github_failed_only, or sarif. Default: sarif | |
# output_format: junitxml # optional: the output format, one of: cli, json, junitxml, github_failed_only, or sarif. Default: sarif | |
# - name: Publish report | |
# id: import-scan | |
# uses: ivanamat/defectdojo-import-scan@v1 | |
# with: | |
# token: ${{ secrets.DEFECTOJO_TOKEN }} | |
# defectdojo_url: ${{ secrets.DEFECTOJO_URL }} | |
# file: reports/trivy-scan-report.json | |
# scan_type: Checkov Scan | |
# engagement: 81 | |
# close_old_findings: true |