From 715fae447cd02a65bc019de5db76be429f3fafcf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 22:08:24 +0000 Subject: [PATCH] Update dependency node to v24 --- .github/workflows/ci.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad76c936..f6e39ad0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: key: ${{ runner.os }}-lint-modules-${{ hashFiles('**/yarn.lock') }} - uses: actions/setup-node@v6 with: - node-version: 18.x + node-version: 24.x - run: yarn install --ignore-scripts - run: yarn run lint @@ -79,7 +79,7 @@ jobs: key: ${{ runner.os }}-deploy-modules-${{ hashFiles('**/yarn.lock') }} - uses: actions/setup-node@v6 with: - node-version: 18.x + node-version: 24.x - run: yarn install --ignore-scripts - run: yarn run build - run: rm .gitignore diff --git a/Dockerfile b/Dockerfile index c56d2e87..6f549164 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Build the website -FROM node:18.12.1 as builder +FROM node:24.11.1 as builder USER node