Skip to content

Commit

Permalink
Update trivvy.yml, add other locally build container
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper authored Jun 26, 2024
1 parent 9dfcd77 commit d48b12c
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/trivvy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,45 @@ jobs:
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Build wis2box-mqtt-metrics-collector
run: |
docker build -t wis2box-mqtt-metrics-collector:test wis2box-mqtt-metrics-collector
- name: Run Trivy vulnerability scanner on wis2box-mqtt-metrics-collector
if: always()
uses: aquasecurity/trivy-action@0.20.0
with:
image-ref: 'wis2box-mqtt-metrics-collector:test'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Build wis2box-broker
run: |
docker build -t wis2box-broker:test wis2box-broker
- name: Run Trivy vulnerability scanner on wis2box-broker
if: always()
uses: aquasecurity/trivy-action@0.20.0
with:
image-ref: 'wis2box-broker:test'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Build wis2downloader
run: |
docker build -t wis2downloader:test wis2downloader
- name: Run Trivy vulnerability scanner on wis2downloader
if: always()
uses: aquasecurity/trivy-action@0.20.0
with:
image-ref: 'wis2downloader:test'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Run Trivy vulnerability scanner on wis2box-webapp
if: always()
uses: aquasecurity/trivy-action@0.20.0
Expand Down

0 comments on commit d48b12c

Please sign in to comment.