Skip to content

Commit 334ecac

Browse files
authored
chore: upgrade from node20 to node24 (#192)
GitHub is deprecating Node.js 20 for Actions and will force Node.js 24 starting June 2, 2026. Node.js 22 was skipped by GitHub entirely. Updates action.yml and CI workflow to use Node.js 24. Closes #184
1 parent 6f76219 commit 334ecac

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
name: Run Unit Tests
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- name: Use Node.js 20.x
19-
uses: actions/setup-node@v3
17+
- uses: actions/checkout@v4
18+
- name: Use Node.js 24.x
19+
uses: actions/setup-node@v4
2020
with:
21-
node-version: 20.x
21+
node-version: 24.x
2222
- name: Run tests
2323
run: |
2424
npm ci

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@ outputs:
8585
changes-markdown:
8686
description: "Markdown-formatted change set summary for PR comments (only when no-execute-changeset is true)"
8787
runs:
88-
using: "node20"
88+
using: "node24"
8989
main: "dist/index.js"

0 commit comments

Comments
 (0)