Skip to content

Commit af77b7b

Browse files
fix: Bump go version to 1.25.8 (llamastack#247)
Fixes CVE-2025-61726 Approved-by: nathan-weinberg Approved-by: derekhiggins
1 parent 2457341 commit af77b7b

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ARG TARGETPLATFORM
1313
# For native builds: CGO_ENABLED=1 with full FIPS OpenSSL support
1414
# For cross-builds: CGO_ENABLED=0 with pure Go FIPS (strictfipsruntime)
1515
ENV GOEXPERIMENT=strictfipsruntime
16+
ENV GOTOOLCHAIN=auto
1617

1718
WORKDIR /workspace
1819
# Copy the Go Modules manifests

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ vet: ## Run go vet against code.
141141

142142
.PHONY: test
143143
test: manifests generate fmt vet envtest ## Run tests. Use TEST_PKGS and TEST_FLAGS to customize.
144-
GOTOOLCHAIN=go1.25.5+auto KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test $(TEST_PKGS) $(TEST_FLAGS)
144+
GOTOOLCHAIN=go1.25.8+auto KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test $(TEST_PKGS) $(TEST_FLAGS)
145145

146146
.PHONY: test-e2e
147147
test-e2e: ## Run e2e tests

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/llamastack/llama-stack-k8s-operator
22

3-
go 1.25.5
3+
go 1.25.8
44

55
require (
66
github.com/go-logr/logr v1.4.3

0 commit comments

Comments
 (0)