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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ GO_DIR := $(OUTPUT_DIR)/go

# Base image used for all golang containers
# Uses trusted google-built golang image
GOLANG_IMAGE_VERSION := 1.25.0
GOLANG_IMAGE_VERSION := 1.25.5
GOLANG_IMAGE := google-go.pkg.dev/golang:$(GOLANG_IMAGE_VERSION)
# Base image used for debian containers
# When updating you can use this command:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/GoogleContainerTools/config-sync

go 1.25.0
go 1.25.5

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While the Go version is correctly updated here, other files in the repository that also specify the Go version appear to have been missed. To ensure consistency, please update them as well:

  • Makefile: GOLANG_IMAGE_VERSION on line 41 is still set to 1.25.0. This should be updated to 1.25.5 to match this change and ensure the build environment uses the correct Go toolchain.
  • examples/post-sync/go.mod: This module is still on Go 1.24.0 with toolchain 1.24.4. It would be good to align its Go version with the main module for consistency.

Updating the Makefile is particularly important to avoid build discrepancies.


require (
cloud.google.com/go/auth v0.18.1
Expand Down