We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2188e96 + 1ec431d commit f2d4b7dCopy full SHA for f2d4b7d
hack/ensure-go.sh
@@ -19,7 +19,9 @@ set -o nounset
19
set -o pipefail
20
21
# MIN_GO_VERSION is the minimum, supported Go version.
22
-MIN_GO_VERSION="go${MIN_GO_VERSION:-1.20.8}"
+# Note: Enforce only the minor version as we can't guarantee that
23
+# the images we use in ProwJobs already use the latest patch version.
24
+MIN_GO_VERSION="go${MIN_GO_VERSION:-1.20}"
25
26
# Ensure the go tool exists and is a viable version.
27
verify_go_version() {
0 commit comments