Skip to content

Commit 687ea8e

Browse files
kirang89claude
andcommitted
ci: bump actions/checkout and actions/setup-node to v6
Silences the "Node.js 20 actions are deprecated" warning in CI/release runs. Both actions' v4 tags use a Node 20 runtime that GitHub is removing from runners on 2026-09-16 (forced Node 24 default from 2026-06-02), so v6 (which ships with the Node 24 runtime) is the forward-compatible pin. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 3530ad9 commit 687ea8e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v6
1919
with:
2020
node-version: '22'
2121
cache: 'npm'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
id-token: write
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Setup Node.js
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: '22'
2525
cache: 'npm'

0 commit comments

Comments
 (0)