Skip to content

Commit bcfab9d

Browse files
committed
chore: drop Node.js 18 support
BREAKING CHANGE: drop Node.js 18 support Signed-off-by: dhmlau <[email protected]>
1 parent 5b9072e commit bcfab9d

File tree

3 files changed

+8
-26
lines changed

3 files changed

+8
-26
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest]
23-
node-version: [18, 20]
23+
node-version: [20, 22, 24]
2424
include:
2525
- os: macos-latest
26-
node_version: 18
26+
node_version: 22
2727
- os: windows-latest
28-
node_version: 18
28+
node_version: 22
2929
fail-fast: false
3030
steps:
3131
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -60,10 +60,10 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
63-
- name: Use Node.js 18
63+
- name: Use Node.js 22
6464
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
6565
with:
66-
node-version: 18.20.8
66+
node-version: 22
6767
- name: Bootstrap project
6868
run: npm ci --ignore-scripts
6969
- name: Verify code linting
@@ -76,10 +76,10 @@ jobs:
7676
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7777
with:
7878
fetch-depth: 0
79-
- name: Use Node.js 18
79+
- name: Use Node.js 22
8080
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
8181
with:
82-
node-version: 18.20.8
82+
node-version: 22
8383
- name: Bootstrap project
8484
run: npm ci --ignore-scripts
8585
- name: Verify commit linting

.travis.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "6.2.12",
44
"description": "Building blocks for LoopBack connectors",
55
"engines": {
6-
"node": ">=18"
6+
"node": ">=20"
77
},
88
"author": "IBM Corp.",
99
"keywords": [

0 commit comments

Comments
 (0)