Skip to content

Commit

Permalink
Edit: Requiring (loosely) current LTS version of Node.js v20.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlelek committed Feb 21, 2024
1 parent 852c928 commit f64920c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [18.x, 20.x, 21.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
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.17.0-alpine
FROM node:20.11.1-alpine

EXPOSE 3000
ENV HOST 0.0.0.0
Expand Down
4 changes: 2 additions & 2 deletions content/pages/install/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Sort: 1
---

To run Raneto you need to have [Node.js](https://nodejs.org)
- **v20.x.x** (or later)
- **v18.x.x** (LTS)
- **v21.x.x** (or later)
- **v20.x.x** (LTS)

Please use the latest version available of the above major Node.js releases to ensure you have the latest security fixes!

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"prettier:fix": "prettier --write bin/* app/**/*.js config/*.js test/*.js server.js app/translations/*json"
},
"engines": {
"node": ">=18.15.0",
"npm": ">=9.5.0"
"node": ">=18.19.1",
"npm": ">=10.2.4"
},
"prettier": {
"singleQuote": true,
Expand Down

0 comments on commit f64920c

Please sign in to comment.