1.0.120 Update project services file #181
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: run-checkov | |
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: reference-architecture/ | |
quiet: true # optional: display only failed checks | |
soft_fail: true # optional: do not return an error code if there are failed checks | |
framework: terraform # 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_file_path: reports/results.sarif # folder and name of results file | |
download_external_modules: true # optional: download external terraform modules from public git repositories and terraform registry | |
log_level: WARNING # optional: set log level. Default WARNING | |