Skip to content

Commit fa66089

Browse files
chore(deps): update node.js to v24 (#834)
* chore(deps): update node.js to v24 * fixup! chore(deps): update node.js to v24 * fixup! fixup! chore(deps): update node.js to v24 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yuta Hiroto <[email protected]>
1 parent 5f81df2 commit fa66089

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.internal/tests/common.test.mjs.snapshot

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ exports[`common > should update .gitignore 1`] = `
243243

244244
exports[`common > should update Dockerfile 1`] = `
245245
[
246-
"FROM node:22.21.0-slim AS base",
246+
"FROM node:24.11.1-slim AS base",
247247
"",
248248
"ARG DATABASE_USER=''",
249249
"ARG DATABASE_PASSWORD=''",
@@ -422,8 +422,9 @@ exports[`common > should update compose.yml 1`] = `
422422
" - POSTGRES_USER=\${DATABASE_USER}",
423423
" - POSTGRES_PASSWORD=\${DATABASE_PASSWORD}",
424424
" - POSTGRES_DB=\${DATABASE_DB}",
425-
" volumes:",
426-
" - db-data:/var/lib/postgresql/data",
425+
" # https://admin.alyfoods.com/blog/testcontainers-volume-mount-failure-debugging",
426+
" # volumes:",
427+
" # - db-data:/var/lib/postgresql/data",
427428
" healthcheck:",
428429
" test: [\\"CMD-SHELL\\", \\"pg_isready\\"]",
429430
" interval: 1s",

.internal/tests/no-otel.test.mjs.snapshot

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ exports[`no-otel > should update .github/workflows/ci.yml 1`] = `
208208

209209
exports[`no-otel > should update Dockerfile 1`] = `
210210
[
211-
"FROM node:22.21.0-slim AS base",
211+
"FROM node:24.11.1-slim AS base",
212212
"",
213213
"ARG DATABASE_USER=''",
214214
"ARG DATABASE_PASSWORD=''",
@@ -376,8 +376,9 @@ exports[`no-otel > should update compose.yml 1`] = `
376376
" - POSTGRES_USER=\${DATABASE_USER}",
377377
" - POSTGRES_PASSWORD=\${DATABASE_PASSWORD}",
378378
" - POSTGRES_DB=\${DATABASE_DB}",
379-
" volumes:",
380-
" - db-data:/var/lib/postgresql/data",
379+
" # https://admin.alyfoods.com/blog/testcontainers-volume-mount-failure-debugging",
380+
" # volumes:",
381+
" # - db-data:/var/lib/postgresql/data",
381382
" healthcheck:",
382383
" test: [\\"CMD-SHELL\\", \\"pg_isready\\"]",
383384
" interval: 1s",

.internal/tests/no-stripe.test.mjs.snapshot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ exports[`no-stripe > should update .github/workflows/ci.yml 1`] = `
255255

256256
exports[`no-stripe > should update Dockerfile 1`] = `
257257
[
258-
"FROM node:22.21.0-slim AS base",
258+
"FROM node:24.11.1-slim AS base",
259259
"",
260260
"ARG DATABASE_USER=''",
261261
"ARG DATABASE_PASSWORD=''",

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.21.0
1+
24.11.1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.21.0-slim AS base
1+
FROM node:24.11.1-slim AS base
22

33
ARG DATABASE_USER=''
44
ARG DATABASE_PASSWORD=''

0 commit comments

Comments
 (0)