CVE Scan #442
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CVE Scan" | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: { } | |
jobs: | |
scan-images: | |
name: Scan latest public image | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
image: [ kroki, kroki-mermaid, kroki-bpmn, kroki-excalidraw, kroki-blockdiag, kroki-diagramsnet, kroki-wireviz ] | |
tag: [ latest ] | |
steps: | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'docker.io/yuzutech/${{ matrix.image }}:${{ matrix.tag }}' | |
severity: 'CRITICAL,HIGH' | |
format: 'table' | |
# we can set to 0 to avoid breaking the pipeline | |
exit-code: '0' |