diff --git a/.docker-hub/print/Dockerfile b/.docker-hub/print/Dockerfile index c310878d891..f818f75d592 100644 --- a/.docker-hub/print/Dockerfile +++ b/.docker-hub/print/Dockerfile @@ -1,5 +1,5 @@ # build stage -FROM node:22.6.0 AS build-stage +FROM node:22.7.0 AS build-stage ARG SENTRY_AUTH_TOKEN ARG SENTRY_ORG ARG SENTRY_PRINT_PROJECT @@ -22,7 +22,7 @@ COPY print . RUN npm run build # production stage -FROM node:22.6.0 AS production-stage +FROM node:22.7.0 AS production-stage WORKDIR /app COPY --from=build-stage /app/.output ./.output diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index fc1cf51692b..129f54073d8 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -105,7 +105,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.6.0' + node-version: '22.7.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -134,7 +134,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.6.0' + node-version: '22.7.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -163,7 +163,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.6.0' + node-version: '22.7.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -195,7 +195,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.6.0' + node-version: '22.7.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -331,7 +331,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.6.0' + node-version: '22.7.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -374,7 +374,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.6.0' + node-version: '22.7.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -413,7 +413,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.6.0' + node-version: '22.7.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: diff --git a/.nvmrc b/.nvmrc index dc5f6a52b13..2062ac7e5f6 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -22.6.0 +22.7.0 diff --git a/.ops/ecamp3-logging/files/elasticsearch/remove-old-indexes/docker-compose.yml b/.ops/ecamp3-logging/files/elasticsearch/remove-old-indexes/docker-compose.yml index c3576be12ca..3d1b576a881 100644 --- a/.ops/ecamp3-logging/files/elasticsearch/remove-old-indexes/docker-compose.yml +++ b/.ops/ecamp3-logging/files/elasticsearch/remove-old-indexes/docker-compose.yml @@ -1,6 +1,6 @@ services: remove-old-indexes: - image: node:22.6.0 + image: node:22.7.0 volumes: - ./src:/src command: diff --git a/.ops/ecamp3-logging/values.yaml b/.ops/ecamp3-logging/values.yaml index 5c5852b185e..4b6a03703f6 100644 --- a/.ops/ecamp3-logging/values.yaml +++ b/.ops/ecamp3-logging/values.yaml @@ -48,7 +48,7 @@ elasticsearch: storage: 10Gi removeOldIndexes: maxIndexAge: 15 - image: node:22.6.0 + image: node:22.7.0 kibana: name: kibana diff --git a/docker-compose.yml b/docker-compose.yml index fcf404b495e..ba48433443c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: frontend: - image: node:22.6.0 + image: node:22.7.0 container_name: 'ecamp3-frontend' ports: - '9229:9229' # jest debug @@ -91,7 +91,7 @@ services: - VARNISH_HTTP_PORT=8080 pdf: - image: node:22.6.0 + image: node:22.7.0 container_name: 'ecamp3-pdf' stdin_open: true tty: true @@ -110,7 +110,7 @@ services: - CI=${CI} print: - image: node:22.6.0 + image: node:22.7.0 container_name: 'ecamp3-print' user: ${USER_ID:-1000} volumes: @@ -194,7 +194,7 @@ services: working_dir: /e2e translation: - image: node:22.6.0 + image: node:22.7.0 profiles: ['translation'] container_name: 'ecamp3-translation' volumes: diff --git a/renovate.json b/renovate.json index 65b395696f1..719cb34ba2f 100644 --- a/renovate.json +++ b/renovate.json @@ -5,7 +5,7 @@ ":prConcurrentLimitNone" ], "constraints": { - "node": "22.6.0", + "node": "22.7.0", "php": "8.3.10" }, "automergeType": "branch",