Skip to content

Commit 8a0aea6

Browse files
committed
Update pinned actions for Node 24
1 parent c4f790d commit 8a0aea6

2 files changed

Lines changed: 10 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,24 @@ on:
77
permissions:
88
contents: read
99

10-
env:
11-
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
12-
1310
jobs:
1411
test:
1512
runs-on: ubuntu-latest
1613
steps:
17-
# Pinned to actions/checkout v4 release tag commit 34e114876b0b11c390a56381ad16ebd13914f8d5.
18-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
14+
# Pinned to actions/checkout v5 release tag commit 93cb6efe18208431cddfb8368fd83d5badbf9bfd.
15+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
1916
with:
2017
persist-credentials: false
21-
# Pinned to actions/setup-python v5 release tag commit a26af69be951a213d495a4c3e4e4022e16d87065.
22-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
18+
# Pinned to actions/setup-python v6 release tag commit a309ff8b426b58ec0e2a45f0f869d46889d02405.
19+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2320
with:
2421
python-version: '3.11'
2522
cache: 'pip'
2623
cache-dependency-path: requirements.lock.txt
27-
# Pinned to actions/setup-node v4 release tag commit 49933ea5288caeca8642d1e84afbd3f7d6820020.
28-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
24+
# Pinned to actions/setup-node v5 release tag commit a0853c24544627f65ddf259abe73b1d18a591444.
25+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
2926
with:
30-
node-version: '20'
27+
node-version: '24'
3128
- name: Install Node dependencies from package-lock
3229
run: |
3330
npm ci

scripts/check_ci_supply_chain_pins.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
ROOT = Path(__file__).resolve().parents[1]
99
WORKFLOW = ROOT / '.github' / 'workflows' / 'ci.yml'
1010
EXPECTED_ACTIONS = {
11-
'actions/checkout': '34e114876b0b11c390a56381ad16ebd13914f8d5',
12-
'actions/setup-python': 'a26af69be951a213d495a4c3e4e4022e16d87065',
13-
'actions/setup-node': '49933ea5288caeca8642d1e84afbd3f7d6820020',
11+
'actions/checkout': '93cb6efe18208431cddfb8368fd83d5badbf9bfd',
12+
'actions/setup-python': 'a309ff8b426b58ec0e2a45f0f869d46889d02405',
13+
'actions/setup-node': 'a0853c24544627f65ddf259abe73b1d18a591444',
1414
}
1515

1616

0 commit comments

Comments
 (0)