From 964ad5a24f77bf0009529e1f71f040897e4cb616 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 10:10:08 +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 b84b068..7ddc8f5 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: 20.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: 20.x + node-version: 24.x - run: yarn install --ignore-scripts - run: yarn run build - run: rm .gitignore diff --git a/Dockerfile b/Dockerfile index 3cec697..217d612 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Build the website -FROM node:18.12.1 as builder +FROM node:24.14.0 as builder USER node