Skip to content

Commit 9e0a018

Browse files
itayinbarrclaude
andcommitted
ci: bump checkout/setup-node to v5 (Node 24 runtime)
Clears the "Node.js 20 actions are deprecated" warning surfaced on the v1.6.0 publish run. actions/checkout@v5 and actions/setup-node@v5 run on Node 24; node-version stays '22' (the project's required runtime, an unrelated knob the action still honors). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 7538c4d commit 9e0a018

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
name: github-pages
2828
url: ${{ steps.deployment.outputs.page_url }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: Configure Pages
3232
uses: actions/configure-pages@v5
3333
with:

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
contents: write # required to create the GitHub Release
1616
id-token: write # required for npm provenance via GitHub OIDC
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

20-
- uses: actions/setup-node@v4
20+
- uses: actions/setup-node@v5
2121
with:
2222
# Must match package.json#engines.node (>= 22.19.0); pi 0.75+ requires it.
2323
node-version: '22'

0 commit comments

Comments
 (0)