We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b75ef3 commit f43e131Copy full SHA for f43e131
.github/workflows/checkov.yml
@@ -23,11 +23,13 @@ jobs:
23
run: pip install checkov
24
25
- name: Write skip checks config
26
- run: echo "${{ vars.CHECKOV_SKIP_CHECKS }}" > checkov-skip.yml
+ run: |
27
+ echo "${{ vars.CHECKOV_SKIP_CHECKS }}" > .checkov.yaml
28
+ ls
29
30
- name: Run Checkov scan
31
run: |
- checkov -d . --output cli --output sarif --output-file-path console,results.sarif
32
+ checkov -d . --output cli --output sarif --output-file-path console,results.sarif --s
33
continue-on-error: true
34
35
- name: Upload SARIF file
0 commit comments