From bb1a9faaaf21857262fd1f79ccae43794d659fc5 Mon Sep 17 00:00:00 2001 From: shaynafinocchiaro Date: Mon, 22 Apr 2024 08:49:41 -0400 Subject: [PATCH] Update actions.yaml --- .github/workflows/actions.yaml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index e59459a9..6b451702 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -117,24 +117,34 @@ jobs: uses: aquasecurity/trivy-action@master with: image-ref: proxy-server:${{ env.podman_tag }} - severity: HIGH + severity: 'HIGH,CRITICAL' + ignore-unfixed: true + exit-code: '1' - name: Scan Role Service uses: aquasecurity/trivy-action@master with: image-ref: role-service:${{ env.podman_tag }} - severity: HIGH + severity: 'HIGH,CRITICAL' + ignore-unfixed: true + exit-code: '1' - name: Scan Tenant Service uses: aquasecurity/trivy-action@master with: image-ref: tenant-service:${{ env.podman_tag }} - severity: HIGH + severity: 'HIGH,CRITICAL' + ignore-unfixed: true + exit-code: '1' - name: Scan SideCar Proxy uses: aquasecurity/trivy-action@master with: image-ref: sidecar-proxy:${{ env.sidecar_tag }} - severity: HIGH + severity: 'HIGH,CRITICAL' + ignore-unfixed: true + exit-code: '1' - name: Scan Storage Service uses: aquasecurity/trivy-action@master with: image-ref: storage-service:${{ env.podman_tag }} - severity: HIGH + severity: 'HIGH,CRITICAL' + ignore-unfixed: true + exit-code: '1'