Skip to content

re-order

re-order #4

Workflow file for this run

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/[email protected]
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/[email protected]
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/[email protected]
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/[email protected]
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'