From 295ecd1362592ed68f9d72c368dca13c4f09c3c5 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Mon, 23 Jun 2025 17:41:21 -0400 Subject: [PATCH] fix(workflows): remove MEDIUM severity from Trivy scans in security workflow --- .github/workflows/trivy_security_scans.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/trivy_security_scans.yml b/.github/workflows/trivy_security_scans.yml index c4ebfc7..db12708 100644 --- a/.github/workflows/trivy_security_scans.yml +++ b/.github/workflows/trivy_security_scans.yml @@ -29,7 +29,7 @@ jobs: format: table exit-code: 1 ignore-unfixed: true - severity: CRITICAL,HIGH,MEDIUM + severity: CRITICAL,HIGH image-scan: name: Trivy Docker Image Scan (Backend & Frontend) @@ -63,7 +63,7 @@ jobs: format: table exit-code: 1 ignore-unfixed: true - severity: CRITICAL,HIGH,MEDIUM + severity: CRITICAL,HIGH - name: Scan frontend Docker image with Trivy uses: aquasecurity/trivy-action@master @@ -72,4 +72,4 @@ jobs: format: table exit-code: 1 ignore-unfixed: true - severity: CRITICAL,HIGH,MEDIUM + severity: CRITICAL,HIGH