Skip to content

Commit 744b6de

Browse files
committed
fix(ci): added non blocking security scanning
1 parent 84b8a46 commit 744b6de

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,22 @@ jobs:
244244
with:
245245
go-version-input: '1.24'
246246
go-package: './...'
247+
output-format: sarif
248+
output-file: govulncheck.sarif
249+
- name: Upload govulncheck SARIF results
250+
uses: github/codeql-action/upload-sarif@v3
251+
with:
252+
sarif_file: govulncheck.sarif
253+
category: govulncheck
254+
if: always()
255+
256+
- name: Upload govulncheck results as artifact
257+
uses: actions/upload-artifact@v4
258+
with:
259+
name: govulncheck-results
260+
path: govulncheck.sarif
261+
retention-days: 30
262+
if: always()
247263

248264
- name: Verify dependencies
249265
run: |

0 commit comments

Comments
 (0)