From 93c42489b37760d3ecbaf6fcbf536b2d89b8abc2 Mon Sep 17 00:00:00 2001 From: Mateusz Urbanek Date: Fri, 15 Nov 2024 15:58:45 +0100 Subject: [PATCH] fix: do not scan fail on medium or lower Signed-off-by: Mateusz Urbanek --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c146b84e8..366ff46ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,9 +126,9 @@ jobs: tags: | ghcr.io/sozu-proxy/sozu:${{ steps.config.outputs.tag }} - name: Scan image using Grype - id: grype uses: anchore/scan-action@v5 with: image: ghcr.io/sozu-proxy/sozu:${{ steps.config.outputs.tag }} output-format: table + severity-cutoff: high ...