Skip to content

Commit dae23e9

Browse files
Raise minimum NodeJS to 22 (#1057)
1 parent 8ff5d3a commit dae23e9

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
platform: [ ubuntu-latest, macos-latest, windows-latest ]
20-
node-version: [ ^18.0.0, ^20.0.0 ]
20+
node-version: [ ^22.0.0, ^24.0.0 ]
2121
runs-on: ${{ matrix.platform }}
2222
steps:
2323
- uses: actions/checkout@v5
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v5
3737
- uses: actions/setup-node@v6
3838
with:
39-
node-version: ^20.0.0
39+
node-version: ^24.0.0
4040
- uses: actions/cache@v4
4141
env:
4242
cache-name: cache-pnpm-modules
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/checkout@v5
5959
- uses: actions/setup-node@v6
6060
with:
61-
node-version: ^20.0.0
61+
node-version: ^24.0.0
6262
- run: npm ci
6363
- run: npm run release-readiness
6464

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Changed
11+
- Raised minimum NodeJS version from 12.17.0 to 22.0.0.
12+
1013
## [1.0.0] - 2021-07-10
1114

1215
## [0.3.0] - 2021-04-03

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Getting Started
44

5-
To start, you'll need NodeJS 14 or [Lando](https://lando.dev/) installed (prefix commands with `lando`).
5+
To start, you'll need NodeJS 22.
66

77
The development and release process heavily lean into common NPM scripts, the only commands you need to care about are;
88

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"typescript": "^5.0.2"
5252
},
5353
"engines": {
54-
"node": ">=18.0.0"
54+
"node": ">=22.0.0"
5555
},
5656
"ava": {
5757
"files": [

0 commit comments

Comments
 (0)