Skip to content

Commit 753d5d3

Browse files
committed
drop support for node 18
1 parent 52b0122 commit 753d5d3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
node: [18, 20, 22, 24]
19+
node: [20, 22, 24]
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-node@v4

.github/workflows/fix-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-node@v4
2222
with:
23-
node-version: 18
23+
node-version: 22
2424
registry-url: 'https://registry.npmjs.org'
2525

2626
- name: Install Dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 18
22+
node-version: 22
2323
registry-url: 'https://registry.npmjs.org'
2424

2525
- name: Install Dependencies

.github/workflows/runtime-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v4
1010
- uses: actions/setup-node@v4
1111
with:
12-
node-version: '18'
12+
node-version: 22
1313
- uses: denoland/setup-deno@v2
1414
with:
1515
deno-version: v1.x

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"workos"
1010
],
1111
"engines": {
12-
"node": ">=18"
12+
"node": ">=20"
1313
},
1414
"type": "module",
1515
"main": "./lib/cjs/index.cjs",
@@ -54,7 +54,7 @@
5454
"@types/cookie": "^0.6.0",
5555
"@types/glob": "^8.1.0",
5656
"@types/jest": "^29.5.14",
57-
"@types/node": "~18",
57+
"@types/node": "~20",
5858
"@types/pluralize": "0.0.33",
5959
"@types/qs": "^6.14.0",
6060
"@typescript-eslint/parser": "^8.25.0",

0 commit comments

Comments
 (0)