Skip to content

Commit 0ba2417

Browse files
MariaAgaevgeni
authored andcommitted
Fixes #38459 - Support node 22
1 parent 0dfdb28 commit 0ba2417

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/matrix.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"postgresql": ["13"],
33
"ruby": ["2.7", "3.0"],
4-
"node": ["18"]
4+
"node": ["18", "22"]
55
}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Base container that is used for both building and running the app
22
FROM quay.io/centos/centos:stream9 as base
3-
ARG NODEJS_VERSION="18"
3+
ARG NODEJS_VERSION="22"
44
ENV FOREMAN_FQDN=foreman.example.com
55
ENV FOREMAN_DOMAIN=example.com
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Foreman isn't really a node module, these are just dependencies needed to build the webpack bundle. 'dependencies' are the asset libraries in use and 'devDependencies' are used for the build process.",
66
"private": true,
77
"engines": {
8-
"node": ">=18.0.0 <21.0.0",
8+
"node": ">=18.0.0 <23.0.0",
99
"npm": ">=8.0.0"
1010
},
1111
"scripts": {

0 commit comments

Comments
 (0)