From 666542266a6e881e6f29122e055a5e20e528f582 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Mon, 23 Jun 2025 17:34:56 -0400 Subject: [PATCH] fix(workflows): add missing severity parameter for Docker image scans in Trivy workflow --- .github/workflows/trivy_security_scans.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/trivy_security_scans.yml b/.github/workflows/trivy_security_scans.yml index aa95e92..c4ebfc7 100644 --- a/.github/workflows/trivy_security_scans.yml +++ b/.github/workflows/trivy_security_scans.yml @@ -63,6 +63,7 @@ jobs: format: table exit-code: 1 ignore-unfixed: true + severity: CRITICAL,HIGH,MEDIUM - name: Scan frontend Docker image with Trivy uses: aquasecurity/trivy-action@master @@ -71,3 +72,4 @@ jobs: format: table exit-code: 1 ignore-unfixed: true + severity: CRITICAL,HIGH,MEDIUM