Skip to content
This repository was archived by the owner on Feb 19, 2024. It is now read-only.

Commit 240d5ce

Browse files
committed
fix: switch to current Node.js LTS version 18
1 parent d2c661f commit 240d5ce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/code-style.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-node@v3
2323
with:
24-
node-version: "16.x"
24+
node-version: "18.x"
2525

2626
- name: Keep npm cache around to speed up installs
2727
uses: actions/cache@v3

.github/workflows/semantic-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v3
1818
- uses: actions/setup-node@v3
1919
with:
20-
node-version: "16.x"
20+
node-version: "18.x"
2121
- name: Authenticate with NPM registry
2222
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
2323
- name: Keep npm cache around to speed up installs

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
]
3232
},
3333
"engines": {
34-
"node": ">=16",
34+
"node": ">=18",
3535
"npm": ">=8"
3636
},
3737
"release": {

0 commit comments

Comments
 (0)