From 5cf627cd7fcd341f49a2c19e515d1f51760fbd3b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 01:13:23 +0000 Subject: [PATCH] chore(deps): update dependency node to v24 --- .github/workflows/ci.yaml | 2 +- .github/workflows/deploy.yml | 2 +- Dockerfile | 2 +- Dockerfile.production | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7a09ec3d..f61c0dc8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "24.x" - name: Install modules run: npm install diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fa182849..9c2e40e9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "24.x" - name: Install modules run: npm install diff --git a/Dockerfile b/Dockerfile index b8c1878f..ed523cb0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pull official base image -FROM node:22.21.1-alpine +FROM node:24.13.0-alpine RUN apk add --update python3 make g++\ && rm -rf /var/cache/apk/* diff --git a/Dockerfile.production b/Dockerfile.production index e9e2e1eb..c37a5ff0 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -1,5 +1,5 @@ # pull official base image -FROM node:22.21.1-alpine +FROM node:24.13.0-alpine # set working directory WORKDIR /app