Skip to content

Commit 355eccd

Browse files
committed
chore: update node on GitHub actions
No change to logic. This adds Node v24 to GitHub Actions CI. This drops official support for Node v18 because it was marked end-of-life in March 2025.
1 parent 5966b6d commit 355eccd

2 files changed

Lines changed: 4 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,13 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13-
- 10
14-
- 12
15-
- 14
13+
- 20
14+
- 22
15+
- 24
1616
os:
1717
- ubuntu-latest
1818
- macos-latest
1919
- windows-latest
20-
exclude:
21-
- node-version: 10
22-
os: macos-latest
23-
- node-version: 12
24-
os: macos-latest
25-
- node-version: 14
26-
os: macos-latest
2720
steps:
2821
- uses: actions/checkout@v2
2922
- uses: actions/setup-node@v2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
"shelljs-release": "^0.5.2"
4949
},
5050
"engines": {
51-
"node": ">=10"
51+
"node": ">=20"
5252
}
5353
}

0 commit comments

Comments
 (0)