diff --git a/.docker-hub/print/Dockerfile b/.docker-hub/print/Dockerfile index 344a5067fbc..695dbb37609 100644 --- a/.docker-hub/print/Dockerfile +++ b/.docker-hub/print/Dockerfile @@ -1,5 +1,5 @@ # build stage -FROM node:20.13.1 AS build-stage +FROM node:20.14.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:20.13.1 AS production-stage +FROM node:20.14.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 cbf18685618..b71443bd1d1 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -63,7 +63,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.13.1' + node-version: '20.14.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -92,7 +92,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.13.1' + node-version: '20.14.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -121,7 +121,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.13.1' + node-version: '20.14.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -150,7 +150,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.13.1' + node-version: '20.14.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -253,7 +253,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.13.1' + node-version: '20.14.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -296,7 +296,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.13.1' + node-version: '20.14.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: @@ -335,7 +335,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.13.1' + node-version: '20.14.0' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: diff --git a/.nvmrc b/.nvmrc index f203ab89b79..48b14e6b2b5 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.13.1 +20.14.0 diff --git a/docker-compose.yml b/docker-compose.yml index 42fde8f4fcb..28d786a5b67 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: frontend: - image: node:20.13.1 + image: node:20.14.0 container_name: 'ecamp3-frontend' ports: - '9229:9229' # jest debug @@ -108,7 +108,7 @@ services: - VARNISH_HTTP_PORT=8080 pdf: - image: node:20.13.1 + image: node:20.14.0 container_name: 'ecamp3-pdf' stdin_open: true tty: true @@ -127,7 +127,7 @@ services: - CI=${CI} print: - image: node:20.13.1 + image: node:20.14.0 container_name: 'ecamp3-print' user: ${USER_ID:-1000} volumes: @@ -206,7 +206,7 @@ services: working_dir: /e2e translation: - image: node:20.13.1 + image: node:20.14.0 profiles: ['translation'] container_name: 'ecamp3-translation' volumes: diff --git a/renovate.json b/renovate.json index d782a194c66..4e98cf2f8ef 100644 --- a/renovate.json +++ b/renovate.json @@ -5,7 +5,7 @@ ], "force": { "constraints": { - "node": "20.13.1", + "node": "20.14.0", "php": "8.3.7" } },