Merge pull request #126047 from cpanato/upgrade-go-123

[go] Bump images, dependencies and versions to go 1.23rc2
This commit is contained in:
Kubernetes Prow Robot
2024-07-23 11:02:29 -07:00
committed by GitHub
7 changed files with 22 additions and 18 deletions

View File

@@ -538,6 +538,7 @@ EOF
local go_version
IFS=" " read -ra go_version <<< "$(GOFLAGS='' go version)"
local minimum_go_version
# TODO: Update to go1.23 as soon we are ready to merge this
minimum_go_version=go1.22
if [[ "${minimum_go_version}" != $(echo -e "${minimum_go_version}\n${go_version[2]}" | sort -s -t. -k 1,1 -k 2,2n -k 3,3n | head -n1) && "${go_version[2]}" != "devel" ]]; then
kube::log::usage_from_stdin <<EOF