From 33039438f0359c5298219c198ac6c7c1aa837551 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 Dec 2025 11:37:46 +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 436327e3..3844d9b9 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..07181073 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Build the website -FROM node:18.12.1 as builder +FROM node:24.12.0 as builder USER node