From 79543f14f8e4a1506f53ec02c2747a4d9d6121e6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 28 Feb 2026 21:23:37 +0000 Subject: [PATCH] chore(deps): 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 c44c8e0..8acd340 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - run: corepack enable - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 - name: Install dependencies run: npx nypm@latest i @@ -33,7 +33,7 @@ jobs: - run: corepack enable - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 - name: Install dependencies run: npx nypm@latest i diff --git a/Dockerfile b/Dockerfile index f62e106..b6b362b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # https://gist.github.com/sandros94/03675514546f17af1fd6db3863c043b4 # Base configuration -ARG node_tag=22-alpine +ARG node_tag=24-alpine FROM node:${node_tag} AS base WORKDIR /app