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 28c3983 commit a020815Copy full SHA for a020815
.github/workflows/checkov.yml
@@ -0,0 +1,32 @@
1
+name: checkov
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ main ]
6
7
+jobs:
8
+ scan:
9
+ permissions:
10
+ contents: read
11
+ security-events: write
12
+ actions: read
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: checkout code
18
+ uses: actions/checkout@v4
19
20
+ - name: setup checkov
21
+ uses: bridgecrewio/checkov-action@v12
22
+ with:
23
+ output_format: cli,sarif
24
+ output_file_path: console,results.sarif
25
+ soft_fail: true
26
27
+ - name: sarif file
28
+ uses: github/codeql-action/upload-sarif@v2
29
30
+ if: success() || failure()
31
32
+ sarif_file: results.sarif
0 commit comments