Skip to content

Commit 7045c84

Browse files
authored
codeql: upgrade CodeQL Action from v3 to v4 (#864)
Upgrade CodeQL Action from v3 to v4 per the deprecation notice at https://github.blog/changelog/2025-10-28-upcoming-deprecation-of-codeql-action-v3/ v3 will be deprecated in December 2026 alongside GHES 3.19; v4 moves to the Node.js 24 runtime.
2 parents b81dfc6 + 54357d5 commit 7045c84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@v3
36+
uses: github/codeql-action/init@v4
3737
with:
3838
languages: ${{ matrix.language }}
3939
config-file: ./.github/codeql/codeql-config.yml
@@ -45,7 +45,7 @@ jobs:
4545
make -j$(nproc)
4646
4747
- name: Perform CodeQL Analysis
48-
uses: github/codeql-action/analyze@v3
48+
uses: github/codeql-action/analyze@v4
4949
with:
5050
upload: False
5151
output: sarif-results
@@ -61,6 +61,6 @@ jobs:
6161
path: sarif-results
6262

6363
- name: Upload SARIF
64-
uses: github/codeql-action/upload-sarif@v3
64+
uses: github/codeql-action/upload-sarif@v4
6565
with:
6666
sarif_file: sarif-results/${{ matrix.language }}.sarif

0 commit comments

Comments
 (0)