From cf4172e81a53d9c06524908c4ee479b1e77a289d Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Sun, 12 Jul 2026 23:54:47 +0200 Subject: [PATCH] fix(security): bump trivy-action v0.28.0 -> v0.36.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v0.28.0's composite action referenced a nested aquasecurity/setup-trivy@v0.2.1 tag that no longer exists, so the action failed to RESOLVE during job setup (before any step ran) — continue-on-error can't catch a resolution failure, so both Trivy jobs went red on every run. v0.36.0 pins setup-trivy to a real SHA (v0.2.6) and still supports scan-type/scan-ref/scanners/format/output. --- .github/workflows/security.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index a19d95e4..5f457881 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -79,7 +79,7 @@ jobs: - name: Checkout uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 - name: Trivy config scan (Dockerfile + docker-compose) - uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # v0.28.0 + uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0 continue-on-error: true # report-only; enforcement flipped on in Plan E with: scan-type: config @@ -107,7 +107,7 @@ jobs: - name: Checkout uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 - name: Trivy license scan - uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # v0.28.0 + uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0 continue-on-error: true # report-only; enforcement flipped on in Plan E with: scan-type: fs