Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating allowed CVEs #277

Merged
merged 5 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 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: '.github/workflows/.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: '.github/workflows/.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: '.github/workflows/.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: '.github/workflows/.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: '.github/workflows/.trivyignore'
Loading