From c4865bf1f59efaf60398d5b620e58093a481ef6d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 01:34:02 +0000 Subject: [PATCH] Bump node from 25-alpine to 26-alpine in the deps group Bumps the deps group with 1 update: node. Updates `node` from 25-alpine to 26-alpine --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production dependency-group: deps ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 95d6b97..66a180c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:25-alpine AS builder +FROM node:26-alpine AS builder RUN mkdir -p /opt/autoupdate/dist @@ -8,7 +8,7 @@ COPY . /opt/autoupdate/ RUN yarn install --frozen-lockfile && yarn run build -FROM node:25-alpine AS runner +FROM node:26-alpine AS runner LABEL com.github.actions.name="Auto-update pull requests with changes from their base branch" LABEL com.github.actions.description="A GitHub Action that auto-updates PRs with changes from their base branch"