Skip to content

Commit 982f960

Browse files
committed
Upgrade to node 20
1 parent e304a91 commit 982f960

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install node
2525
uses: actions/setup-node@v2
2626
with:
27-
node-version: '18.x'
27+
node-version: '20.x'
2828

2929
- name: Linting
3030
id: linting

.github/workflows/release-packages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- uses: actions/setup-node@v2
5252
with:
53-
node-version: '18.x'
53+
node-version: '20.x'
5454
registry-url: 'https://registry.npmjs.org'
5555
always-auth: true
5656

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18-alpine as builder
1+
FROM node:20-alpine as builder
22

33
WORKDIR /arnavon
44

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@types/mocha": "^10.0.6"
8686
},
8787
"engines": {
88-
"node": ">=8.0.0"
88+
"node": ">=18.0.0"
8989
},
9090
"oclif": {
9191
"commands": "./dist/cli/commands",
@@ -100,9 +100,9 @@
100100
"dist/**/*.js"
101101
],
102102
"targets": [
103-
"node14-linux",
104-
"node14-macos-x64",
105-
"node14-win"
103+
"node18-linux",
104+
"node18-macos-x64",
105+
"node18-win"
106106
]
107107
}
108108
}

0 commit comments

Comments
 (0)