Skip to content

Commit c6419ef

Browse files
davidtorciviaclaude
andcommitted
ci: bump checkout/setup-node to v5 (Node 24 runtime), build with Node 22
GitHub forces actions onto the Node 24 runtime on 2026-06-16; checkout@v4 and setup-node@v4 are Node 20 actions and were flagged on both the Windows and macOS build jobs. Node 20 itself is EOL (April 2026), so the app build moves to Node 22 LTS. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 148d2a8 commit c6419ef

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Install Rust stable
2929
uses: dtolnay/rust-toolchain@stable
@@ -38,9 +38,9 @@ jobs:
3838
workspaces: src-tauri -> target
3939

4040
- name: Install Node.js
41-
uses: actions/setup-node@v4
41+
uses: actions/setup-node@v5
4242
with:
43-
node-version: 20
43+
node-version: 22
4444

4545
- name: Install npm dependencies
4646
run: npm ci

0 commit comments

Comments
 (0)