From a672ba4ee9ccc39b53081c178384b3d7eef47f59 Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Mon, 2 Mar 2026 18:57:30 -0800 Subject: [PATCH] chore(ci): fix Trivy scanner param and runner --- .github/workflows/analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index c6772ca..c4fc013 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -21,7 +21,7 @@ jobs: trivy: name: Trivy Security Scan if: github.event_name != 'pull_request' || !github.event.pull_request.draft - runs-on: ubuntu-24.04 + runs-on: ubuntu-latest permissions: contents: read security-events: write @@ -35,7 +35,7 @@ jobs: output: "trivy-results.sarif" ignore-unfixed: true scan-type: "fs" - scanners: "vuln,secret,config" + scanners: "vuln,secret,misconfig" severity: "CRITICAL,HIGH" - name: Upload Trivy scan results to GitHub Security tab