cached trivy db
This commit is contained in:
parent
a904059360
commit
a90bc4bfc9
@ -16,13 +16,28 @@ jobs:
|
|||||||
- name: Pull docker image
|
- name: Pull docker image
|
||||||
run: docker pull docker.asperti.com/paspo/dnscache:latest
|
run: docker pull docker.asperti.com/paspo/dnscache:latest
|
||||||
|
|
||||||
|
- uses: actions/cache/restore@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
/root/.cache/trivy
|
||||||
|
key: trivy-db
|
||||||
|
|
||||||
|
- name: Setup trivy
|
||||||
|
run: |
|
||||||
|
wget -O /tmp/trivy.deb https://github.com/aquasecurity/trivy/releases/download/v0.57.1/trivy_0.57.1_Linux-64bit.deb
|
||||||
|
dpkg -i /tmp/trivy.deb
|
||||||
|
|
||||||
- name: Run Trivy vulnerability scanner
|
- name: Run Trivy vulnerability scanner
|
||||||
id: scan
|
id: scan
|
||||||
uses: aquasecurity/trivy-action@master
|
run: |
|
||||||
|
trivy image --format json docker.asperti.com/paspo/dnscache:latest > trivy-results.json
|
||||||
|
|
||||||
|
- uses: actions/cache/save@v4
|
||||||
|
if: always() # salva in cache anche se trova vulnerabilità
|
||||||
with:
|
with:
|
||||||
image-ref: "docker.asperti.com/paspo/dnscache:latest"
|
path: |
|
||||||
format: "json"
|
/root/.cache/trivy
|
||||||
output: "trivy-results.json"
|
key: trivy-db
|
||||||
|
|
||||||
# if some vulnerability is found, we fail
|
# if some vulnerability is found, we fail
|
||||||
- name: check output
|
- name: check output
|
||||||
|
Loading…
Reference in New Issue
Block a user