Skip to content

Commit

Permalink
chore: update node 16.14 -> 18.16 (latest LTS)
Browse files Browse the repository at this point in the history
  • Loading branch information
lediur committed May 10, 2023
1 parent 2e7c6ac commit 7015eb0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
node-version:
- 16.14.0-buster
- 18.16.0-buster

container:
image: node:${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.14
18.16
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN jq '{ dependencies, devDependencies, resolutions }' < /tmp/package.json > /t

### Fat Build
### -------------------------
FROM node:16.14.0 AS builder
FROM node:18.16.0 AS builder

WORKDIR /usr/Spoke

Expand All @@ -36,7 +36,7 @@ RUN yarn run build

### Slim Deploy
### -------------------------
FROM node:16.14.0
FROM node:18.16.0

WORKDIR /usr/Spoke

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ that goal. See [`HOWTO_migrate-from-moveon-main.md`](./docs/HOWTO_migrate-from-m

Prerequisites:

- Node (^16.14) -- See [How to Install Node](https://nodejs.dev/learn/how-to-install-nodejs)
- Node (^18.16) -- See [How to Install Node](https://nodejs.dev/learn/how-to-install-nodejs)
- Yarn (>= 1.19.1) -- See [Installing Yarn](https://classic.yarnpkg.com/en/docs/install)
- Postgres (>= 11) -- See [install](https://postgresql.org/download) and [start](https://www.postgresql.org/docs/current/server-start.html) documentation

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1",
"node": "^16.14.0"
"node": "^18.16.0"
},
"scripts": {
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('spoke must be installed with Yarn: https://yarnpkg.com/')\"",
Expand Down

0 comments on commit 7015eb0

Please sign in to comment.