From 516f89cbbbccd0c1eec69c1d5f7783dd13f49e75 Mon Sep 17 00:00:00 2001 From: Bacluc Date: Fri, 29 Dec 2023 20:14:00 +0000 Subject: [PATCH] chore(deps): update dependency node to v21 --- .docker-hub/print/Dockerfile | 4 ++-- .github/workflows/continuous-integration.yml | 14 +++++++------- .nvmrc | 2 +- docker-compose.yml | 8 ++++---- renovate.json | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.docker-hub/print/Dockerfile b/.docker-hub/print/Dockerfile index 4a8f4cf120..6777e988ba 100644 --- a/.docker-hub/print/Dockerfile +++ b/.docker-hub/print/Dockerfile @@ -1,5 +1,5 @@ # build stage -FROM node:20.9.0 AS build-stage +FROM node:21.5.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.9.0 AS production-stage +FROM node:21.5.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 6a5a68ad1a..4208cfb3e5 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.9.0' + node-version: '21.5.0' - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 with: @@ -92,7 +92,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '21.5.0' - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 with: @@ -121,7 +121,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '21.5.0' - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 with: @@ -150,7 +150,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '21.5.0' - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 with: @@ -253,7 +253,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '21.5.0' - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 with: @@ -296,7 +296,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '21.5.0' - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 with: @@ -335,7 +335,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '20.9.0' + node-version: '21.5.0' - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 with: diff --git a/.nvmrc b/.nvmrc index f3f52b42d3..24c71f3db6 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.9.0 +21.5.0 diff --git a/docker-compose.yml b/docker-compose.yml index f006b522a4..cd228edb34 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.9' services: frontend: - image: node:20.9.0 + image: node:21.5.0 container_name: 'ecamp3-frontend' ports: - '9229:9229' # jest debug @@ -94,7 +94,7 @@ services: - ./api/public:/srv/api/public:ro pdf: - image: node:20.9.0 + image: node:21.5.0 container_name: 'ecamp3-pdf' stdin_open: true tty: true @@ -113,7 +113,7 @@ services: - CI=${CI} print: - image: node:20.9.0 + image: node:21.5.0 container_name: 'ecamp3-print' user: ${USER_ID:-1000} volumes: @@ -192,7 +192,7 @@ services: working_dir: /e2e translation: - image: node:20.9.0 + image: node:21.5.0 profiles: ['translation'] container_name: 'ecamp3-translation' volumes: diff --git a/renovate.json b/renovate.json index e50335540c..eba7bf1f33 100644 --- a/renovate.json +++ b/renovate.json @@ -5,7 +5,7 @@ ], "force": { "constraints": { - "node": "20.9.0", + "node": "21.5.0", "php": "8.3.1" } },