-
Notifications
You must be signed in to change notification settings - Fork 371
45 lines (41 loc) · 1.37 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
---
name: Trivy vulnerability scanner
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install go
uses: actions/setup-go@v5
with:
go-version: 1.23.1
- name: Build images from Dockerfile
run: |
make
docker build -t test/csi-snapshotter:latest -f ./cmd/csi-snapshotter/Dockerfile --output=type=docker --label revision=latest .
docker build -t test/snapshot-controller:latest -f ./cmd/snapshot-controller/Dockerfile --output=type=docker --label revision=latest .
- name: Run Trivy vulnerability scanner on csi-snapshotter image
uses: aquasecurity/trivy-action@master
with:
image-ref: 'test/csi-snapshotter:latest'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'
- name: Run Trivy vulnerability scanner on snapshotter-controller image
uses: aquasecurity/trivy-action@master
with:
image-ref: 'test/snapshot-controller:latest'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'