We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9b56e4 commit e5ec878Copy full SHA for e5ec878
1 file changed
.github/workflows/codeql-analysis.yml
@@ -58,14 +58,18 @@ jobs:
58
- name: Install dependencies
59
run: uv sync --frozen --group github-action
60
61
+ # Updated to v4 to avoid deprecation of v3 in late 2026
62
- name: Initialize CodeQL
- uses: github/codeql-action/init@v3
63
+ uses: github/codeql-action/init@v4
64
with:
65
languages: ${{ matrix.language }}
66
# Extended suites catch more complex vulnerabilities and code quality smells
67
queries: security-extended,security-and-quality
68
+ # Explicitly set the source root to ensure Python files are picked up
69
+ source-root: src
70
71
+ # Updated to v4 to match initialization
72
- name: Perform Analysis
- uses: github/codeql-action/analyze@v3
73
+ uses: github/codeql-action/analyze@v4
74
75
category: "/language:${{matrix.language}}"
0 commit comments