diff --git a/.docker-hub/print/Dockerfile b/.docker-hub/print/Dockerfile index a8b2bef6198..1894644b067 100644 --- a/.docker-hub/print/Dockerfile +++ b/.docker-hub/print/Dockerfile @@ -1,5 +1,5 @@ # build stage -FROM node:22.3.0 AS build-stage +FROM node:22.4.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.3.0 AS production-stage +FROM node:22.4.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 452f590224a..b5cb5484298 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -107,7 +107,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.3.0' + node-version: '22.4.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -136,7 +136,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.3.0' + node-version: '22.4.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -165,7 +165,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.3.0' + node-version: '22.4.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -197,7 +197,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.3.0' + node-version: '22.4.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -305,7 +305,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.3.0' + node-version: '22.4.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -348,7 +348,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.3.0' + node-version: '22.4.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -387,7 +387,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '22.3.0' + node-version: '22.4.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: diff --git a/.nvmrc b/.nvmrc index 8326e27f9b6..58a1f0907f7 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -22.3.0 +22.4.0 diff --git a/docker-compose.yml b/docker-compose.yml index b0963db0214..7b1a87cc2b4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: frontend: - image: node:22.3.0 + image: node:22.4.0 container_name: 'ecamp3-frontend' ports: - '9229:9229' # jest debug @@ -91,7 +91,7 @@ services: - VARNISH_HTTP_PORT=8080 pdf: - image: node:22.3.0 + image: node:22.4.0 container_name: 'ecamp3-pdf' stdin_open: true tty: true @@ -110,7 +110,7 @@ services: - CI=${CI} print: - image: node:22.3.0 + image: node:22.4.0 container_name: 'ecamp3-print' user: ${USER_ID:-1000} volumes: @@ -194,7 +194,7 @@ services: working_dir: /e2e translation: - image: node:22.3.0 + image: node:22.4.0 profiles: ['translation'] container_name: 'ecamp3-translation' volumes: diff --git a/renovate.json b/renovate.json index e3b57c2a781..62df44a5185 100644 --- a/renovate.json +++ b/renovate.json @@ -6,7 +6,7 @@ ], "force": { "constraints": { - "node": "22.3.0", + "node": "22.4.0", "php": "8.3.7" } },