Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update node.js to v22.9.0 #5945

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .docker-hub/print/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM node:22.8.0 AS build-stage
FROM node:22.9.0 AS build-stage
ARG SENTRY_AUTH_TOKEN
ARG SENTRY_ORG
ARG SENTRY_PRINT_PROJECT
Expand All @@ -22,7 +22,7 @@ COPY print .
RUN npm run build

# production stage
FROM node:22.8.0 AS production-stage
FROM node:22.9.0 AS production-stage
WORKDIR /app

COPY --from=build-stage /app/.output ./.output
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
remove-old-indexes:
image: node:22.8.0
image: node:22.9.0
volumes:
- ./src:/src
command:
Expand Down
2 changes: 1 addition & 1 deletion .ops/ecamp3-logging/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ elasticsearch:
storage: 10Gi
removeOldIndexes:
maxIndexAge: 15
image: node:22.8.0
image: node:22.9.0

kibana:
name: kibana
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
frontend:
image: node:22.8.0
image: node:22.9.0
container_name: 'ecamp3-frontend'
ports:
- '9229:9229' # jest debug
Expand Down Expand Up @@ -68,7 +68,7 @@ services:
- VARNISH_HTTP_PORT=8080

pdf:
image: node:22.8.0
image: node:22.9.0
container_name: 'ecamp3-pdf'
stdin_open: true
tty: true
Expand All @@ -87,7 +87,7 @@ services:
- CI=${CI}

print:
image: node:22.8.0
image: node:22.9.0
container_name: 'ecamp3-print'
user: ${USER_ID:-1000}
volumes:
Expand Down Expand Up @@ -187,7 +187,7 @@ services:
protocol: tcp

translation:
image: node:22.8.0
image: node:22.9.0
profiles: ['translation']
container_name: 'ecamp3-translation'
volumes:
Expand Down
Loading