🔧 Fix GitHub Actions Warnings

 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!
This commit is contained in:
Dennis Konkol
2025-09-05 23:19:19 +00:00
parent b265a380c4
commit 03826be1af

View File

@@ -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'