8000 Merge pull request #3183 from github/update-v4.30.7-55283843c · github/codeql-action@e296a93 · GitHub
[go: up one dir, main page]

Skip to content

Commit e296a93

Browse files
authored
Merge pull request #3183 from github/update-v4.30.7-55283843c
Merge main into releases/v4
2 parents 64d10c1 + 93c1673 commit e296a93

31 files changed

+108
-72
lines changed

.github/actions/check-sarif/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ inputs:
1616
Comma separated list of query ids that should NOT be included in this SARIF file.
1717
1818
runs:
19-
using: node20
19+
using: node24
2020
main: index.js

.github/workflows/codescanning-config-cli.yml

Lines changed: 1 addition & 1 deletion
< 8000 td data-grid-cell-id="diff-ad306efcd2c2fee6af6f9b9507518c69a08dc58a573698149902308303f9e2f8-62-62-1" data-selected="false" role="gridcell" style="background-color:var(--bgColor-default);text-align:center" tabindex="-1" valign="top" class="focusable-grid-cell diff-line-number position-relative diff-line-number-neutral left-side">62
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Set up Node.js
5959
uses: actions/setup-node@v5
6060
with:
61-
node-version: '20'
61+
node-version: 24
62
cache: 'npm'
6363

6464
- name: Install dependencies

.github/workflows/pr-checks.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, macos-latest, windows-latest]
23+
node-version: [20, 24]
2324
permissions:
2425
contents: read
2526
security-events: write # needed to upload ESLint results
@@ -36,7 +37,7 @@ jobs:
3637
- name: Set up Node.js
3738
uses: actions/setup-node@v5
3839
with:
39-
node-version: '20.x'
40+
node-version: ${{ matrix.node-version }}
4041
cache: 'npm'
4142

4243
- name: Set up Python
@@ -73,7 +74,7 @@ jobs:
7374

7475
- name: Upload sarif
7576
uses: github/codeql-action/upload-sarif@v3
76-
if: matrix.os == 'ubuntu-latest'
77+
if: matrix.os == 'ubuntu-latest' && matrix.node-version == 24
7778
with:
7879
sarif_file: eslint.sarif
7980
category: eslint

.github/workflows/query-filters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install Node.js
3535
uses: actions/setup-node@v5
3636
with:
37-
node-version: 20.x
37+
node-version: 24
3838
cache: npm
3939

4040
- name: Install dependencies

.github/workflows/update-bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Node.js
4444
uses: actions/setup-node@v5
4545
with:
46-
node-version: '20.x'
46+
node-version: 24
4747
cache: 'npm'
4848

4949
- name: Install dependencies

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
44

5+
## 4.30.7 - 06 Oct 2025
6+
7+
- [v4+ only] The CodeQL Action now runs on Node.js v24. [#3169](https://github.com/github/codeql-action/pull/3169)
8+
59
## 3.30.6 - 02 Oct 2025
610

711
- Update default CodeQL bundle version to 2.23.2. [#3168](https://github.com/github/codeql-action/pull/3168)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Please note that this project is released with a [Contributor Code of Conduct][c
1313

1414
## Development and Testing
1515

16-
Before you start, ensure that you have a recent version of node (16 or higher) installed, along with a recent version of npm (9.2 or higher). You can see which version of node is used by the action in `init/action.yml`.
16+
Before you start, ensure that you have a recent version of node (24 or higher) installed, along with a recent version of npm (9.2 or higher). You can see which version of node is used by the action in `init/action.yml`.
1717

1818
### Common tasks
1919

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ For compiled languages:
6262

6363
The following versions of the CodeQL Action are currently supported:
6464

65-
- v3 (latest)
65+
- v4 (latest)
66+
- v3
6667

6768
## Supported versions of the CodeQL Bundle on GitHub Enterprise Server
6869

analyze/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ outputs:
9292
sarif-id:
9393
description: The ID of the uploaded SARIF file.
9494
runs:
95-
using: node20
95+
using: node24
9696
main: "../lib/analyze-action.js"
9797
post: "../lib/analyze-action-post.js"

autobuild/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ inputs:
1515
$GITHUB_WORKSPACE as its working directory.
1616
required: false
1717
runs:
18-
using: node20
18+
using: node24
1919
main: '../lib/autobuild-action.js& 3318 #39;

0 commit comments

Comments
 (0)
0