From ead884cb8c47fb53794aa13a4f523ae280cdf8d3 Mon Sep 17 00:00:00 2001 From: Yue Sun Date: Fri, 14 Aug 2026 17:14:32 -0700 Subject: [PATCH] Bump Go to 1.26.6 Signed-off-by: Yue Sun --- CONTRIBUTING.md | 2 +- dockerfiles/Dockerfile | 2 +- go.mod | 2 +- hack/verify-minimal-images_test.sh | 2 +- site/content/en/docs/developer-guide/contributing.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5ff9b90f..da9a5f69 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ Thanks for helping build inference-cache. This repository follows kubebuilder-st Requirements: -- Go 1.26.5 or newer +- Go 1.26.6 or newer - Make - Python 3 with `venv` support (`python3-venv` on Debian/Ubuntu) - Docker diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 4ed1557a..5c49e38f 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -4,7 +4,7 @@ # syntax=docker/dockerfile:1.7 -FROM --platform=$BUILDPLATFORM golang:1.26.5 AS builder +FROM --platform=$BUILDPLATFORM golang:1.26.6 AS builder ARG TARGETOS ARG TARGETARCH WORKDIR /workspace diff --git a/go.mod b/go.mod index be319e8d..0509e930 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ module github.com/cachebox-project/inference-cache -go 1.26.5 +go 1.26.6 require ( github.com/evanphx/json-patch/v5 v5.9.11 diff --git a/hack/verify-minimal-images_test.sh b/hack/verify-minimal-images_test.sh index 0d58c20d..d21f5c43 100755 --- a/hack/verify-minimal-images_test.sh +++ b/hack/verify-minimal-images_test.sh @@ -14,7 +14,7 @@ trap 'rm -rf "$workdir"' EXIT valid_dockerfile="$workdir/Dockerfile.valid" cat >"$valid_dockerfile" <<'EOF' -FROM golang:1.26.5 AS builder +FROM golang:1.26.6 AS builder FROM gcr.io/distroless/static-debian13:nonroot@sha256:f7f8f729987ad0fdf6b05eeeae94b26e6a0f613bdf46feea7fc40f7bd72953e6 AS controller FROM gcr.io/distroless/static-debian13:nonroot@sha256:f7f8f729987ad0fdf6b05eeeae94b26e6a0f613bdf46feea7fc40f7bd72953e6 AS server FROM gcr.io/distroless/static-debian13:nonroot@sha256:f7f8f729987ad0fdf6b05eeeae94b26e6a0f613bdf46feea7fc40f7bd72953e6 AS subscriber diff --git a/site/content/en/docs/developer-guide/contributing.md b/site/content/en/docs/developer-guide/contributing.md index eb8111df..3203f1cd 100644 --- a/site/content/en/docs/developer-guide/contributing.md +++ b/site/content/en/docs/developer-guide/contributing.md @@ -12,7 +12,7 @@ in the repository. ## Local setup -Requirements: **Go 1.26.5+**, Make, Docker, kind, and protoc. +Requirements: **Go 1.26.6+**, Make, Docker, kind, and protoc. Install the git hooks once per clone — they enforce the project rules below: