-
Notifications
You must be signed in to change notification settings - Fork 16
49 lines (47 loc) · 1.58 KB
/
trivvy.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
38
39
40
41
42
43
44
45
46
47
48
49
name: Run Trivy vulnerability scanner
on: [ push ]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build wis2box-management
run: |
docker build -t wis2box-management:test wis2box-management
- name: Run Trivy vulnerability scanner on wis2box-management
uses: aquasecurity/trivy-action@0.20.0
with:
image-ref: 'wis2box-management:test'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Run Trivy vulnerability scanner on wis2box-webapp
uses: aquasecurity/trivy-action@0.20.0
with:
image-ref: 'ghcr.io/wmo-im/wis2box-webapp:latest'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Run Trivy vulnerability scanner on wis2box-ui
uses: aquasecurity/trivy-action@0.20.0
with:
image-ref: 'ghcr.io/wmo-im/wis2box-ui:latest'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Run Trivy vulnerability scanner on wis2box-api
uses: aquasecurity/trivy-action@0.20.0
with:
image-ref: 'ghcr.io/wmo-im/wis2box-api:latest'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'