From 68f60f0234ccda2765aa3facbe9613bf20c05c3d Mon Sep 17 00:00:00 2001 From: Akhil Highflame Date: Mon, 30 Mar 2026 17:06:43 +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 9f954b1..c57d7c5 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -145,7 +145,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 @@ -169,7 +169,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