-
Notifications
You must be signed in to change notification settings - Fork 26
37 lines (32 loc) · 1.17 KB
/
trivy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Trivy scanner
on:
- push
permissions:
contents: read
jobs:
trivy:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Run Trivy scanner on repository
uses: aquasecurity/trivy-action@master
with:
scan-type: repo
ignore-unfixed: true
vuln-type: "os,library"
severity: "MEDIUM,HIGH,CRITICAL"
format: "sarif"
output: "trivy-repository-scan.sarif"
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/[email protected]
with:
# Path to SARIF file relative to the root of the repository
sarif_file: trivy-repository-scan.sarif
# Optional category for the results
# Used to differentiate multiple results for one commit
category: repository-scan