Skip to content

Commit cb41d66

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

File tree

3 files changed

+9
-35
lines changed

3 files changed

+9
-35
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest]
21-
node-version: [18, 20, 22]
21+
node-version: [20, 22, 24]
2222
include:
2323
- os: macos-latest
24-
node-version: 20
24+
node-version: 22
2525
- os: windows-latest
26-
node-version: 20
26+
node-version: 22
2727
fail-fast: false
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -73,10 +73,10 @@ jobs:
7373
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7474
with:
7575
fetch-depth: 0
76-
- name: Use Node.js 20
76+
- name: Use Node.js 22
7777
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
7878
with:
79-
node-version: 20.19.5
79+
node-version: 22
8080
- name: Update NPM
8181
run: npm install --global npm
8282
- name: Bootstrap project
@@ -94,10 +94,10 @@ jobs:
9494
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9595
with:
9696
fetch-depth: 0
97-
- name: Use Node.js 20
97+
- name: Use Node.js 22
9898
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
9999
with:
100-
node-version: 20.19.5
100+
node-version: 22
101101
- name: Update NPM
102102
run: npm install --global npm
103103
- name: Bootstrap project

.travis.yml

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"Juggler",
1515
"ORM"
1616
],
17-
"author": "IBM Corp.",
17+
"author": "IBM Corp. and LoopBack contributors",
1818
"engines": {
19-
"node": ">=18"
19+
"node": ">=20"
2020
},
2121
"repository": {
2222
"type": "git",

0 commit comments

Comments
 (0)