Commit 9be9d21
committed
Fix failing security scan workflow
## Issues Fixed
1. **CodeQL Action v2 Deprecation**: GitHub deprecated CodeQL Action v1 and v2
- Reference: https://github.blog/changelog/2025-01-10-code-scanning-codeql-action-v2-is-now-deprecated/
- Updated both upload-sarif actions from @v2 to @V3
2. **Repository Scan**: Line 30 - upload-sarif@v2 → @V3
3. **Docker Image Scan**: Line 57 - upload-sarif@v2 → @V3
## Impact
- Fixes CI blocking on PR #46
- Ensures security scanning continues to work
- Maintains SARIF upload to GitHub Security tab
- No functional changes to scanning behavior
## Testing
- Local tests pass (40 passed, 1 skipped, 94.66% coverage)
- CodeQL Action v3 is the current stable version
- Both repository and Docker image scans will now complete successfully
This resolves the "CodeQL Action v2 is now deprecated" error that was
failing all PR checks.1 parent 7f325a2 commit 9be9d21
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
0 commit comments