From 7e8a55e3ae6de7d10f7463953487e798e5470a10 Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Sun, 23 Aug 2026 14:37:31 +0300 Subject: [PATCH] Bump Go to 1.26.7 --- Dockerfile | 2 +- Dockerfile.windows | 2 +- go.mod | 2 +- test/go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8a1487ff..61548854 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # Must override builder-base, not builder, since the latter is referred to later in the file and so must not be # directly replaced. See here, and note that "stage" parameter mentioned there has been renamed to # "build-context": https://github.com/docker/buildx/pull/904#issuecomment-1005871838 -FROM golang:1.26.5-bookworm AS builder-base +FROM golang:1.26.7-bookworm AS builder-base FROM --platform=$BUILDPLATFORM builder-base AS builder ARG TARGETARCH diff --git a/Dockerfile.windows b/Dockerfile.windows index fd0ee345..14268edc 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -5,7 +5,7 @@ # Must override builder-base, not builder, since the latter is referred to later in the file and so must not be # directly replaced. See here, and note that "stage" parameter mentioned there has been renamed to # "build-context": https://github.com/docker/buildx/pull/904#issuecomment-1005871838 -FROM --platform=linux/$BUILDARCH golang:1.26.5-bookworm AS builder-base +FROM --platform=linux/$BUILDARCH golang:1.26.7-bookworm AS builder-base FROM --platform=linux/$BUILDARCH builder-base AS builder ARG TARGETARCH diff --git a/go.mod b/go.mod index bac01098..e3818b95 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module k8s.io/node-problem-detector -go 1.26.5 +go 1.26.7 require ( cloud.google.com/go/compute/metadata v0.9.0 diff --git a/test/go.mod b/test/go.mod index fadfed53..8438cae1 100644 --- a/test/go.mod +++ b/test/go.mod @@ -1,6 +1,6 @@ module k8s.io/node-problem-detector/test -go 1.26.5 +go 1.26.7 replace k8s.io/node-problem-detector => ../.