Skip to content

Commit 8ee3ee1

Browse files
Merge pull request ecamp#5338 from ecamp/renovate/node-22.x
chore(deps): update dependency node to v22.3.0
2 parents 01640c0 + b8b4359 commit 8ee3ee1

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.docker-hub/print/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build stage
2-
FROM node:22.2.0 AS build-stage
2+
FROM node:22.3.0 AS build-stage
33
ARG SENTRY_AUTH_TOKEN
44
ARG SENTRY_ORG
55
ARG SENTRY_PRINT_PROJECT
@@ -22,7 +22,7 @@ COPY print .
2222
RUN npm run build
2323

2424
# production stage
25-
FROM node:22.2.0 AS production-stage
25+
FROM node:22.3.0 AS production-stage
2626
WORKDIR /app
2727

2828
COPY --from=build-stage /app/.output ./.output

.github/workflows/continuous-integration.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
- uses: actions/setup-node@v4
6565
with:
66-
node-version: '22.2.0'
66+
node-version: '22.3.0'
6767

6868
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
6969
with:
@@ -92,7 +92,7 @@ jobs:
9292

9393
- uses: actions/setup-node@v4
9494
with:
95-
node-version: '22.2.0'
95+
node-version: '22.3.0'
9696

9797
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
9898
with:
@@ -121,7 +121,7 @@ jobs:
121121

122122
- uses: actions/setup-node@v4
123123
with:
124-
node-version: '22.2.0'
124+
node-version: '22.3.0'
125125

126126
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
127127
with:
@@ -150,7 +150,7 @@ jobs:
150150

151151
- uses: actions/setup-node@v4
152152
with:
153-
node-version: '22.2.0'
153+
node-version: '22.3.0'
154154

155155
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
156156
with:
@@ -255,7 +255,7 @@ jobs:
255255

256256
- uses: actions/setup-node@v4
257257
with:
258-
node-version: '22.2.0'
258+
node-version: '22.3.0'
259259

260260
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
261261
with:
@@ -298,7 +298,7 @@ jobs:
298298

299299
- uses: actions/setup-node@v4
300300
with:
301-
node-version: '22.2.0'
301+
node-version: '22.3.0'
302302

303303
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
304304
with:
@@ -337,7 +337,7 @@ jobs:
337337

338338
- uses: actions/setup-node@v4
339339
with:
340-
node-version: '22.2.0'
340+
node-version: '22.3.0'
341341

342342
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
343343
with:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.2.0
1+
22.3.0

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
frontend:
3-
image: node:22.2.0
3+
image: node:22.3.0
44
container_name: 'ecamp3-frontend'
55
ports:
66
- '9229:9229' # jest debug
@@ -91,7 +91,7 @@ services:
9191
- VARNISH_HTTP_PORT=8080
9292

9393
pdf:
94-
image: node:22.2.0
94+
image: node:22.3.0
9595
container_name: 'ecamp3-pdf'
9696
stdin_open: true
9797
tty: true
@@ -110,7 +110,7 @@ services:
110110
- CI=${CI}
111111

112112
print:
113-
image: node:22.2.0
113+
image: node:22.3.0
114114
container_name: 'ecamp3-print'
115115
user: ${USER_ID:-1000}
116116
volumes:
@@ -194,7 +194,7 @@ services:
194194
working_dir: /e2e
195195

196196
translation:
197-
image: node:22.2.0
197+
image: node:22.3.0
198198
profiles: ['translation']
199199
container_name: 'ecamp3-translation'
200200
volumes:

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"force": {
77
"constraints": {
8-
"node": "22.2.0",
8+
"node": "22.3.0",
99
"php": "8.3.7"
1010
}
1111
},

0 commit comments

Comments
 (0)