-
Notifications
You must be signed in to change notification settings - Fork 53
chore: bump Go and Helm #2089
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: bump Go and Helm #2089
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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.7 | ||
| GOLANG_IMAGE_VERSION := 1.25.8 | ||
| GOLANG_IMAGE := google-go.pkg.dev/golang:$(GOLANG_IMAGE_VERSION) | ||
| # Base image used for debian containers | ||
| # When updating you can use this command: | ||
|
|
@@ -82,7 +82,7 @@ KUSTOMIZE_VERSION := v5.4.2-gke.4 | |
| KUSTOMIZE := $(BIN_DIR)/kustomize | ||
| KUSTOMIZE_STAGING_DIR := $(OUTPUT_DIR)/third_party/kustomize | ||
|
|
||
| HELM_VERSION := v3.18.6-gke.3 | ||
| HELM_VERSION := v3.20.0-gke.1 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update version in tool_util.go
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
| HELM := $(BIN_DIR)/helm | ||
| HELM_STAGING_DIR := $(OUTPUT_DIR)/third_party/helm | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version is being updated manually. For consistency with other dependencies in this
Makefile(likeDEBIAN_BASE_IMAGEon line 47 andGIT_SYNC_VERSIONon line 94), consider adding a script to automatically find and update theGOLANG_IMAGE_VERSION. This would improve maintainability and reduce manual effort for future updates.