Skip to content

Commit dcdbae7

Browse files
authored
Merge pull request kubernetes#93969 from liggitt/go115
[go115] Require go1.15 in build helper scripts
2 parents 5bbc8e1 + bdcffdc commit dcdbae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/lib/golang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ EOF
467467
local go_version
468468
IFS=" " read -ra go_version <<< "$(go version)"
469469
local minimum_go_version
470-
minimum_go_version=go1.14.4
470+
minimum_go_version=go1.15.0
471471
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
472472
kube::log::usage_from_stdin <<EOF
473473
Detected go version: ${go_version[*]}.

0 commit comments

Comments
 (0)