Skip to content

Commit 56df3f8

Browse files
committed
upgrade minimum node-version to >= 18 (#1225)
Drop support for Node 16, which is long past EOL. This will be merged into the `version-8` branch. >[!WARNING] > >Node 18 is where we're moving to, but that will also be EOL in April, 2025. Does this require changes to the WorkOS Docs? E.g. the [API Reference](https://workos.com/docs/reference) or code snippets need updates. ``` [ ] Yes ``` If yes, link a related docs PR and add a docs maintainer as a reviewer. Their approval is required.
1 parent 3c412af commit 56df3f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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: [16, 18, 20, 22]
19+
node: [18, 20, 22]
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-node@v4

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.21.3
1+
v18.20.7

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"yarn": "1.22.19"
1414
},
1515
"engines": {
16-
"node": ">=16"
16+
"node": ">=18"
1717
},
1818
"typings": "lib/index.d.ts",
1919
"files": [

0 commit comments

Comments
 (0)