Skip to content

Commit

Permalink
Upgrade to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
llambeau committed Dec 22, 2023
1 parent e304a91 commit 982f960
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '18.x'
node-version: '20.x'

- name: Linting
id: linting
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
always-auth: true

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as builder
FROM node:20-alpine as builder

WORKDIR /arnavon

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"@types/mocha": "^10.0.6"
},
"engines": {
"node": ">=8.0.0"
"node": ">=18.0.0"
},
"oclif": {
"commands": "./dist/cli/commands",
Expand All @@ -100,9 +100,9 @@
"dist/**/*.js"
],
"targets": [
"node14-linux",
"node14-macos-x64",
"node14-win"
"node18-linux",
"node18-macos-x64",
"node18-win"
]
}
}

0 comments on commit 982f960

Please sign in to comment.