From 5c105aa5329323808578960677b5381c9df9d969 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 21:47:50 +0000 Subject: [PATCH] chore(deps): update dependency node to v24 --- .github/workflows/oci-image-build.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/oci-image-build.yml b/.github/workflows/oci-image-build.yml index a9dc760..1c7c37f 100644 --- a/.github/workflows/oci-image-build.yml +++ b/.github/workflows/oci-image-build.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: - node-version: 18 + node-version: 24 - run: npm ci && npm run lint build: name: 'OCI' diff --git a/Dockerfile b/Dockerfile index 6bf78e9..7be0931 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine AS base +FROM node:24-alpine AS base FROM base AS build RUN apk add --no-cache git