From c85e74f5ed9d42388c134ddd2d26e54cca082af6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 23:09:52 +0000 Subject: [PATCH] chore(deps): update dependency node to v24 --- .github/workflows/image.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index a6daedb..2b683e8 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -29,7 +29,7 @@ jobs: # setup node - uses: actions/setup-node@v5 with: - node-version: '22' + node-version: '24' registry-url: 'https://registry.npmjs.org' # setup qemu diff --git a/Dockerfile b/Dockerfile index 59700a4..00e5f34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # --- dependencies image -FROM --platform=${BUILDPLATFORM} node:22-alpine AS dependencies +FROM --platform=${BUILDPLATFORM} node:24-alpine AS dependencies LABEL maintainer="info@pascaliske.dev" WORKDIR /build @@ -11,7 +11,7 @@ COPY yarn.lock /build RUN yarn install --frozen-lockfile --ignore-scripts # builder image -FROM --platform=${BUILDPLATFORM} node:22-alpine AS builder +FROM --platform=${BUILDPLATFORM} node:24-alpine AS builder LABEL maintainer="info@pascaliske.dev" WORKDIR /build