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 deb4b05 commit 1bd5297Copy full SHA for 1bd5297
.github/workflows/scan.yml
@@ -30,6 +30,33 @@ jobs:
30
- uses: jfrog/setup-jfrog-cli@v4
31
- run: |
32
jf audit --sca --iac --secrets --sast
33
+
34
+ snyk-iac:
35
+ runs-on: ubuntu-latest
36
+ permissions:
37
+ security-events: write
38
+ steps:
39
+ - uses: actions/checkout@v4
40
+ with:
41
+ fetch-depth: 0
42
43
+ - name: Run Snyk to check for code vulnerabilities
44
+ id: snyk_code
45
+ uses: snyk/actions/node@master
46
47
+ command: code iac test
48
+ args: --sarif-file-output=snyk/iac.sarif
49
50
+ - if: always()
51
+ run: |
52
+ cat snyk/iac.sarif
53
54
+ - name: Upload sarif files
55
+ uses: github/codeql-action/upload-sarif@v3
56
+ if: always()
57
58
+ sarif_file: 'snyk/'
59
60
snyk-code:
61
runs-on: ubuntu-latest
62
permissions:
0 commit comments