Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hack/verify-minimal-images_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion site/content/en/docs/developer-guide/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
Loading