-
Notifications
You must be signed in to change notification settings - Fork 2.3k
83 lines (73 loc) · 2.47 KB
/
trivy.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: build
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Docker Image 1 (Vulnerable - Ubuntu)
run: |
docker build -t vulnerable-image-ubuntu -f Dockerfile1 .
- name: Build Docker Image 3 (Non-vulnerable)
run: |
docker build -t non-vulnerable-image -f Dockerfile3 .
- name: "Run Trivy vulnerability scanner: image"
uses: aquasecurity/[email protected]
with:
image-ref: 'vulnerable-image-ubuntu'
scan-type: 'image'
vuln-type: 'os'
format: 'sarif'
output: 'trivy-results-image1.sarif'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results-image1.sarif'
category: 'image'
- name: "Run Trivy vulnerability scanner: image"
uses: aquasecurity/[email protected]
with:
image-ref: 'non-vulnerable-image'
scan-type: 'image'
vuln-type: 'os'
format: 'sarif'
output: 'trivy-results-image2.sarif'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results-image2.sarif'
category: 'image'
- name: "Run Trivy vulnerability scanner: image"
uses: aquasecurity/[email protected]
with:
image-ref: 'vulnerable-image-ubuntu'
scan-type: 'image'
scanners: 'vuln,secret'
vuln-type: 'os'
format: 'sarif'
output: 'trivy-results-image1.sarif'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results-image1.sarif'
category: 'image'
- name: "Run Trivy vulnerability scanner: image"
uses: aquasecurity/[email protected]
with:
image-ref: 'non-vulnerable-image'
scan-type: 'image'
scanners: 'vuln,secret'
vuln-type: 'os'
format: 'sarif'
output: 'trivy-results-image2.sarif'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results-image2.sarif'
category: 'image'