We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb5289a commit b16c1dfCopy full SHA for b16c1df
.github/workflows/pull_request.yml
@@ -29,3 +29,17 @@ jobs:
29
30
- name: Go Build amd64
31
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o kubectl-parallel-exec-amd64
32
+
33
+ - name: Run Trivy vulnerability scanner in repo mode
34
+ uses: aquasecurity/trivy-action@master
35
+ with:
36
+ scan-type: 'fs'
37
+ ignore-unfixed: true
38
+ format: 'sarif'
39
+ output: 'trivy-results.sarif'
40
+ severity: 'CRITICAL'
41
42
+ - name: Upload Trivy scan results to GitHub Security tab
43
+ uses: github/codeql-action/upload-sarif@v2
44
45
+ sarif_file: 'trivy-results.sarif'
0 commit comments