From 85b35893cb61e4586397869e05dac2943cc460c2 Mon Sep 17 00:00:00 2001 From: Alex Gibson Date: Fri, 11 Aug 2023 16:35:45 +0100 Subject: [PATCH] Bump Node to v18 (Fixes #13525) (#13526) --- .github/workflows/pull_request_tests.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request_tests.yml b/.github/workflows/pull_request_tests.yml index 16cf7ce989..0b6539854b 100644 --- a/.github/workflows/pull_request_tests.yml +++ b/.github/workflows/pull_request_tests.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: "Install JS dependencies" run: npm ci - name: "Run JS tests" diff --git a/Dockerfile b/Dockerfile index fb6c904e3b..ded2a2efb6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN pip install --require-hashes --no-cache-dir -r requirements/prod.txt ######## # assets builder and dev server # -FROM node:16-slim AS assets +FROM node:18-slim AS assets ENV PATH=/app/node_modules/.bin:$PATH WORKDIR /app