Skip to content

Commit f4f699f

Browse files
authored
fix: couple go.mod and base container image version (#188)
I accidentally changed the `go.mod` Go version to 1.25.0 without changing the base container image's Go version. I coupled both together in this patch. Amp-Thread: https://ampcode.com/threads/T-019cdacf-480d-70ba-8bec-36522b526cbd
1 parent 7e52d4f commit f4f699f

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
VERSION ?= v0.3.0
2-
GO_CONTAINER_IMAGE ?= docker.io/golang:1.25.3
2+
GO_VERSION := $(shell go list -m -f '{{.GoVersion}}')
3+
GO_CONTAINER_IMAGE ?= docker.io/golang:$(GO_VERSION)
34

45
# Set this to non-empty when building and pushing a release.
56
RELEASE ?=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/oxidecomputer/oxide-cloud-controller-manager
22

3-
go 1.25.0
3+
go 1.25.3
44

55
require (
66
github.com/google/uuid v1.6.0

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tools
22

3-
go 1.25.0
3+
go 1.25.3
44

55
tool helm.sh/helm/v4/cmd/helm
66

0 commit comments

Comments
 (0)