From b6730d073a87ea1c9321873912d6485b5c1f77e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 01:43:33 +0000 Subject: [PATCH] Update dependency node to v24 --- .github/workflows/node-coverage.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node-coverage.yml b/.github/workflows/node-coverage.yml index 66b8ae81..6a9872f7 100644 --- a/.github/workflows/node-coverage.yml +++ b/.github/workflows/node-coverage.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v6 with: - node-version: 22.x + node-version: 24.x - name: Install dependencies run: npm ci --verbose diff --git a/Dockerfile b/Dockerfile index 851d3468..d7b2d20e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=node:23.11.1-alpine3.20 +ARG BASE_IMAGE=node:24.1.0-alpine3.20 ############################################################################### FROM ${BASE_IMAGE} AS base