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 cb1980a commit dde2b56Copy full SHA for dde2b56
1 file changed
.github/workflows/testing.yml
@@ -63,3 +63,19 @@ jobs:
63
uses: codecov/codecov-action@v5
64
with:
65
flags: ${{ matrix.os }},go-${{ matrix.go }}
66
+ vulnerability-scanning:
67
+ runs-on: ubuntu-latest
68
+ steps:
69
+ - uses: actions/checkout@v5
70
+ with:
71
+ fetch-depth: 0
72
+
73
+ - name: Run Trivy vulnerability scanner in repo mode
74
+ uses: aquasecurity/trivy-action@0.32.0
75
76
+ scan-type: 'fs'
77
+ ignore-unfixed: true
78
+ format: 'sarif'
79
+ output: 'trivy-results.sarif'
80
+ exit-code: '1'
81
+ severity: 'CRITICAL,HIGH'
0 commit comments