Skip to content

Commit c259ac4

Browse files
committed
chore: drop Node.js 20 support
BREAKING CHANGE: drop Node.js 20 support Signed-off-by: dhmlau <dhmlau@ca.ibm.com>
1 parent dc427e5 commit c259ac4

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ jobs:
1919
matrix:
2020
os: [ubuntu-latest]
2121
node-version:
22-
- 16
23-
- 18
24-
- 20
25-
- 21
22+
- 22
23+
- 24
24+
- 26
2625
include:
2726
- os: macos-latest
28-
node-version: 20 # LTS
27+
node-version: 22 # LTS
2928
- os: windows-latest
30-
node-version: 20 # LTS
29+
node-version: 22 # LTS
3130
fail-fast: false
3231
runs-on: ${{ matrix.os }}
3332
steps:
@@ -74,7 +73,7 @@ jobs:
7473
- name: Use Node.js 20
7574
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
7675
with:
77-
node-version: 20.20.2
76+
node-version: 22
7877
cache: 'npm'
7978
- name: Bootstrap project
8079
run: |
@@ -103,7 +102,7 @@ jobs:
103102
- name: Use Node.js 20
104103
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
105104
with:
106-
node-version: 20.20.2
105+
node-version: 22
107106
cache: npm
108107
- name: Bootstrap project
109108
run: |
@@ -138,7 +137,7 @@ jobs:
138137
- name: Use Node.js 20
139138
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
140139
with:
141-
node-version: 20.20.2
140+
node-version: 22
142141
cache: npm
143142
- name: Bootstrap project
144143
run: |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"version": "5.0.31",
66
"engines": {
7-
"node": ">=16"
7+
"node": ">=22"
88
},
99
"repository": {
1010
"type": "git",

0 commit comments

Comments
 (0)