From 03826be1afb847c1c7175a30d9229ae9e64e8fa5 Mon Sep 17 00:00:00 2001 From: Dennis Konkol Date: Fri, 5 Sep 2025 23:19:19 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20GitHub=20Actions=20Warning?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Updated CodeQL Action: - Changed from deprecated v2 to v3 - Fixes deprecation warning ✅ Updated Trivy Configuration: - Added skip-version-check flag - Suppresses version update warnings 🎯 GitHub Actions now run cleanly without warnings! --- .github/workflows/ci-cd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 717bf6d..ae1618a 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -68,9 +68,10 @@ jobs: scan-ref: '.' format: 'sarif' output: 'trivy-results.sarif' + skip-version-check: true - name: Upload Trivy scan results to GitHub Security tab - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 if: always() with: sarif_file: 'trivy-results.sarif'