From aef344442ca76dbe83b01fbc40cce22e987329d5 Mon Sep 17 00:00:00 2001 From: Akhil Highflame Date: Mon, 30 Mar 2026 17:06:03 +0530 Subject: [PATCH] devops: changing the trivy action version in the pr checks --- .github/workflows/pr-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index f9396e2..be0e150 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -116,7 +116,7 @@ jobs: - name: Trivy Scan - Text Security Report id: trivy_scan_txt if: ${{ env.GH_SEC_REPORT == 'false' }} - uses: aquasecurity/trivy-action@0.35.0 + uses: aquasecurity/trivy-action@v0.35.0 continue-on-error: true with: ignore-unfixed: true @@ -140,7 +140,7 @@ jobs: - name: Trivy Scan - GitHub Security Report id: trivy_scan_sec if: ${{ env.GH_SEC_REPORT == 'true' }} - uses: aquasecurity/trivy-action@0.35.0 + uses: aquasecurity/trivy-action@v0.35.0 with: ignore-unfixed: true skip-setup-trivy: true