@@ -25,12 +25,12 @@ jobs:
2525 steps :
2626 - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2727
28- - uses : bridgecrewio/checkov-action@f9b0a2206b0401cad02ac0a66be2a7934a5be838 # master
28+ - uses : bridgecrewio/checkov-action@7e30c3dc93584a3c2e42ef75a447610ae6243b0d # master
2929 with :
3030 soft_fail : ${{ github.event_name != 'pull_request' }}
3131
3232 - if : ${{ success() || failure() }}
33- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
33+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
3434 with :
3535 sarif_file : results.sarif
3636
6565 db-file : matcher.db
6666
6767 - if : ${{ success() || failure() }}
68- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
68+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
6969 with :
7070 sarif_file : clair_results.sarif
7171
8080
8181 - uses : microsoft/DevSkim-Action@4b5047945a44163b94642a1cecc0d93a3f428cc6 # v1
8282
83- - uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
83+ - uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
8484 with :
8585 sarif_file : devskim-results.sarif
8686
@@ -111,7 +111,7 @@ jobs:
111111 GITHUB_TOKEN : ${{ github.token }}
112112
113113 - if : ${{ success() || failure() }}
114- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
114+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
115115 with :
116116 sarif_file : results.sarif
117117
@@ -125,15 +125,15 @@ jobs:
125125 - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
126126
127127 - id : grype
128- uses : anchore/scan-action@7037fa011853d5a11690026fb85feee79f4c946c # v7
128+ uses : anchore/scan-action@e1165082ffb1fe366ebaf02d8526e7c4989ea9d2 # v7
129129 with :
130130 path : .
131131 fail-build : ${{ github.event_name == 'pull_request' }}
132132 severity-cutoff : high
133133 only-fixed : true
134134
135135 - if : ${{ success() || failure() }}
136- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
136+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
137137 with :
138138 sarif_file : ${{ steps.grype.outputs.sarif }}
139139
@@ -155,7 +155,7 @@ jobs:
155155 load : true
156156
157157 - id : grype
158- uses : anchore/scan-action@7037fa011853d5a11690026fb85feee79f4c946c # v7
158+ uses : anchore/scan-action@e1165082ffb1fe366ebaf02d8526e7c4989ea9d2 # v7
159159 with :
160160 image : ${{ env.IMAGE_ID }}
161161 fail-build : ${{ github.event_name == 'pull_request' }}
@@ -165,7 +165,7 @@ jobs:
165165 IMAGE_ID : ${{ steps.build.outputs.imageid }}
166166
167167 - if : ${{ success() || failure() }}
168- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
168+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
169169 with :
170170 sarif_file : ${{ steps.grype.outputs.sarif }}
171171
@@ -192,7 +192,7 @@ jobs:
192192 bom : true
193193
194194 - if : ${{ success() || failure() }}
195- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
195+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
196196 with :
197197 sarif_file : results.sarif
198198
@@ -226,7 +226,7 @@ jobs:
226226 path : megalinter-reports
227227
228228 - if : ${{ success() || failure() }}
229- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
229+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
230230 with :
231231 sarif_file : megalinter-reports/megalinter-report.sarif
232232 ref : ${{ github.head_ref && format('refs/heads/{0}', github.head_ref) || github.ref }}
@@ -258,7 +258,7 @@ jobs:
258258 - uses : microsoft/security-devops-action@08976cb623803b1b36d7112d4ff9f59eae704de0 # v1
259259 id : msdo
260260
261- - uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
261+ - uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
262262 with :
263263 sarif_file : ${{ steps.msdo.outputs.sarifFile }}
264264
@@ -292,21 +292,21 @@ jobs:
292292 steps :
293293 - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
294294
295- - uses : anchore/sbom-action@57aae528053a48a3f6235f2d9461b05fbcb7366d # v0
295+ - uses : anchore/sbom-action@e22c389904149dbc22b58101806040fa8d37a610 # v0
296296 with :
297297 output-file : " ${{ github.event.repository.name }}-sbom.spdx.json"
298298 dependency-snapshot : true
299299
300300 - id : grype
301- uses : anchore/scan-action@7037fa011853d5a11690026fb85feee79f4c946c # v7
301+ uses : anchore/scan-action@e1165082ffb1fe366ebaf02d8526e7c4989ea9d2 # v7
302302 with :
303303 sbom : " ${{ github.event.repository.name }}-sbom.spdx.json"
304304 fail-build : ${{ github.event_name == 'pull_request' }}
305305 severity-cutoff : high
306306 only-fixed : true
307307
308308 - if : ${{ success() || failure() }}
309- uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
309+ uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
310310 with :
311311 sarif_file : ${{ steps.grype.outputs.sarif }}
312312
@@ -337,7 +337,7 @@ jobs:
337337 scanners : vuln,secret,misconfig
338338 skip-setup-trivy : true
339339
340- - uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
340+ - uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
341341 with :
342342 sarif_file : trivy-results.sarif
343343
@@ -376,7 +376,7 @@ jobs:
376376 severity : HIGH,CRITICAL
377377 skip-setup-trivy : true
378378
379- - uses : github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8 # v4
379+ - uses : github/codeql-action/upload-sarif@b8bb9f28b8d3f992092362369c57161b755dea45 # v4
380380 with :
381381 sarif_file : trivy-results.sarif
382382
0 commit comments