From f7da40a18bcf2c6e94b825e98be03991a7389a50 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 08:24:44 +0000 Subject: [PATCH] chore(deps): bump golang Bumps the docker-minor-patch group with 1 update in the / directory: golang. Updates `golang` from 1.26-alpine to 1.27-alpine --- updated-dependencies: - dependency-name: golang dependency-version: 1.27-alpine dependency-type: direct:production dependency-group: docker-minor-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- Dockerfile.updater | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ad49e18..fec4ca36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # native Go arch inside the builder image. # --- Builder --------------------------------------------------------------- -FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS builder +FROM --platform=$BUILDPLATFORM golang:1.27-bookworm AS builder # DuckDB ships glibc static libraries. Build against bookworm to keep the # libc requirement below the trixie runtime, using native cross compilers. diff --git a/Dockerfile.updater b/Dockerfile.updater index 43f3d976..eb80d25c 100644 --- a/Dockerfile.updater +++ b/Dockerfile.updater @@ -8,7 +8,7 @@ # toolchain runs natively and only `go build` is cross-compiled. # --- Builder --------------------------------------------------------------- -FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.27-alpine AS builder RUN apk add --no-cache git