From 7ac361c0a020ec2afde77c005632bf2cf88f2c18 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 06:59:32 +0000 Subject: [PATCH] chore(deps): update dependency node to v22 --- .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..4a15ccdf 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: '22' - name: Install run: yarn install --frozen-lockfile - name: Build diff --git a/Dockerfile b/Dockerfile index 5ce0e8cd..b08a1c83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16 as base +FROM node:22 as base WORKDIR /app ENV YARN_VERSION 1.22.19 RUN curl -o- -L https://yarnpkg.com/install.sh | sh -s -- --version $YARN_VERSION