From 1f9753264f905c5ed43fe4efbda905b63e4b16f0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 07:53:26 +0000 Subject: [PATCH] chore(deps): update dependency node to v24 --- .github/workflows/main.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 20c588c9..2a0b9b53 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3.6.0 with: - node-version: '16' + node-version: '24' - name: Install run: yarn install --frozen-lockfile - name: Build diff --git a/Dockerfile b/Dockerfile index 5ce0e8cd..a8e02749 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16 as base +FROM node:24 as base WORKDIR /app ENV YARN_VERSION 1.22.19 RUN curl -o- -L https://yarnpkg.com/install.sh | sh -s -- --version $YARN_VERSION