Skip to content

Commit 75dffb5

Browse files
committed
Upgrade actions/checkout to v6.0.2; opt into Node.js 24 now
actions/checkout bumped from v4 to v6.0.2 (latest stable as of 2026-01-09). FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true added at job level in both workflows to begin testing on Node 24 ahead of the mandatory cutover on June 2nd 2026.
1 parent fd3e748 commit 75dffb5

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ jobs:
1616
actions: read
1717
contents: read
1818
security-events: write
19+
env:
20+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
1921

2022
steps:
2123
- name: Checkout repository
22-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6.0.2
2325

2426
- name: Initialize CodeQL
2527
uses: github/codeql-action/init@v4

.github/workflows/python.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ jobs:
66
build:
77
permissions:
88
pull-requests: write
9+
env:
10+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
911
strategy:
1012
matrix:
1113
python-version: ["3.11", "3.12", "3.13"]
1214
os: ["macos-latest", "ubuntu-latest"]
1315
runs-on: ${{ matrix.os }}
1416
steps:
1517
- name: "GitHub Checks it out :sunglasses-face:"
16-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6.0.2
1719

1820
- name: Set up Python ${{ matrix.python-version }}
1921
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)