Skip to content

Commit 8c65624

Browse files
Merge pull request #8048 from ecamp/renovate/node-24.x
chore(deps): update dependency node to v24.7.0
2 parents 2621381 + 64de78b commit 8c65624

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
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.6.0 AS build-stage
2+
FROM node:24.7.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.6.0 AS production-stage
25+
FROM node:24.7.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@v4
126126
with:
127-
node-version: '24.6.0'
127+
node-version: '24.7.0'
128128

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

154154
- uses: actions/setup-node@v4
155155
with:
156-
node-version: '24.6.0'
156+
node-version: '24.7.0'
157157

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

183183
- uses: actions/setup-node@v4
184184
with:
185-
node-version: '24.6.0'
185+
node-version: '24.7.0'
186186

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

215215
- uses: actions/setup-node@v4
216216
with:
217-
node-version: '24.6.0'
217+
node-version: '24.7.0'
218218

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

354354
- uses: actions/setup-node@v4
355355
with:
356-
node-version: '24.6.0'
356+
node-version: '24.7.0'
357357

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

397397
- uses: actions/setup-node@v4
398398
with:
399-
node-version: '24.6.0'
399+
node-version: '24.7.0'
400400

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

436436
- uses: actions/setup-node@v4
437437
with:
438-
node-version: '24.6.0'
438+
node-version: '24.7.0'
439439

440440
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
441441
with:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.6.0
1+
24.7.0

.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.6.0
3+
image: node:24.7.0
44
volumes:
55
- ./src:/src
66
command:

.ops/ecamp3-logging/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ elasticsearch:
5656
storage: ${ELASTIC_NODE_STORAGE_SIZE}
5757
removeOldIndexes:
5858
maxIndexAge: ${ELASTIC_NODE_MAX_INDEX_AGE}
59-
image: node:24.6.0
59+
image: node:24.7.0
6060

6161
kibana:
6262
name: kibana

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.6.0
3+
image: node:24.7.0
44
container_name: 'ecamp3-frontend'
55
ports:
66
- '9229:9229' # jest debug
@@ -79,7 +79,7 @@ services:
7979
command: varnishncsa
8080

8181
pdf:
82-
image: node:24.6.0
82+
image: node:24.7.0
8383
container_name: 'ecamp3-pdf'
8484
stdin_open: true
8585
tty: true
@@ -98,7 +98,7 @@ services:
9898
- CI=${CI}
9999

100100
print:
101-
image: node:24.6.0
101+
image: node:24.7.0
102102
container_name: 'ecamp3-print'
103103
user: ${USER_ID:-1000}
104104
volumes:
@@ -210,7 +210,7 @@ services:
210210
protocol: tcp
211211

212212
translation:
213-
image: node:24.6.0
213+
image: node:24.7.0
214214
profiles: ['translation']
215215
container_name: 'ecamp3-translation'
216216
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.6.0",
8+
"node": "24.7.0",
99
"php": "8.4.12"
1010
},
1111
"automergeType": "branch",

0 commit comments

Comments
 (0)