Skip to content

Commit 7180a7a

Browse files
Update dependency node to v24.9.0
1 parent b116475 commit 7180a7a

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:24.8.0 AS build-stage
2+
FROM node:24.9.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:24.8.0 AS production-stage
25+
FROM node:24.9.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
@@ -124,7 +124,7 @@ jobs:
124124

125125
- uses: actions/setup-node@v5
126126
with:
127-
node-version: '24.8.0'
127+
node-version: '24.9.0'
128128

129129
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
130130
with:
@@ -153,7 +153,7 @@ jobs:
153153

154154
- uses: actions/setup-node@v5
155155
with:
156-
node-version: '24.8.0'
156+
node-version: '24.9.0'
157157

158158
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
159159
with:
@@ -182,7 +182,7 @@ jobs:
182182

183183
- uses: actions/setup-node@v5
184184
with:
185-
node-version: '24.8.0'
185+
node-version: '24.9.0'
186186

187187
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
188188
with:
@@ -214,7 +214,7 @@ jobs:
214214

215215
- uses: actions/setup-node@v5
216216
with:
217-
node-version: '24.8.0'
217+
node-version: '24.9.0'
218218

219219
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
220220
with:
@@ -353,7 +353,7 @@ jobs:
353353

354354
- uses: actions/setup-node@v5
355355
with:
356-
node-version: '24.8.0'
356+
node-version: '24.9.0'
357357

358358
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
359359
with:
@@ -396,7 +396,7 @@ jobs:
396396

397397
- uses: actions/setup-node@v5
398398
with:
399-
node-version: '24.8.0'
399+
node-version: '24.9.0'
400400

401401
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
402402
with:
@@ -435,7 +435,7 @@ jobs:
435435

436436
- uses: actions/setup-node@v5
437437
with:
438-
node-version: '24.8.0'
438+
node-version: '24.9.0'
439439

440440
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
441441
with:

.ops/ecamp3-logging/files/elasticsearch/remove-old-indexes/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
remove-old-indexes:
3-
image: node:24.8.0
3+
image: node:24.9.0
44
volumes:
55
- ./src:/src
66
command:

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:24.8.0
3+
image: node:24.9.0
44
container_name: 'ecamp3-frontend'
55
ports:
66
- '9229:9229' # jest debug
@@ -80,7 +80,7 @@ services:
8080
command: varnishncsa
8181

8282
pdf:
83-
image: node:24.8.0
83+
image: node:24.9.0
8484
container_name: 'ecamp3-pdf'
8585
stdin_open: true
8686
tty: true
@@ -100,7 +100,7 @@ services:
100100
- CI=${CI}
101101

102102
print:
103-
image: node:24.8.0
103+
image: node:24.9.0
104104
container_name: 'ecamp3-print'
105105
user: ${USER_ID:-1000}
106106
volumes:
@@ -214,7 +214,7 @@ services:
214214
stop_signal: SIGKILL
215215

216216
translation:
217-
image: node:24.8.0
217+
image: node:24.9.0
218218
profiles: ['translation']
219219
container_name: 'ecamp3-translation'
220220
volumes:

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
":prConcurrentLimitNone"
66
],
77
"constraints": {
8-
"node": "24.8.0",
8+
"node": "24.9.0",
99
"php": "8.4.13"
1010
},
1111
"automergeType": "branch",

0 commit comments

Comments
 (0)