Skip to content

Commit

Permalink
add trivy ignores file
Browse files Browse the repository at this point in the history
  • Loading branch information
shaynafinocchiaro committed May 28, 2024
1 parent 8fa9638 commit 3cef45e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/containerscan/allowedlist.yaml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/.trivyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# do not have the fix, https://avd.aquasec.com/nvd/cve-2024-2961
CVE-2024-2961

# fix is not yet available, https://nvd.nist.gov/vuln/detail/CVE-2024-33599
CVE-2024-33599
5 changes: 5 additions & 0 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,31 +120,36 @@ jobs:
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
trivyignores: '.trivyignore'
- name: Scan Role Service
uses: aquasecurity/trivy-action@master
with:
image-ref: role-service:${{ env.podman_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
trivyignores: '.trivyignore'
- name: Scan Tenant Service
uses: aquasecurity/trivy-action@master
with:
image-ref: tenant-service:${{ env.podman_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
trivyignores: '.trivyignore'
- name: Scan SideCar Proxy
uses: aquasecurity/trivy-action@master
with:
image-ref: sidecar-proxy:${{ env.sidecar_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
trivyignores: '.trivyignore'
- name: Scan Storage Service
uses: aquasecurity/trivy-action@master
with:
image-ref: storage-service:${{ env.podman_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
trivyignores: '.trivyignore'

0 comments on commit 3cef45e

Please sign in to comment.