You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
configvar GOFLAGS_VENDOR "$( [ -d vendor ] &&echo'-mod=vendor')""Go flags for using the vendor directory"
88
88
89
-
configvar CSI_PROW_GO_VERSION_BUILD "1.19""Go version for building the component"# depends on component's source code
89
+
configvar CSI_PROW_GO_VERSION_BUILD "1.20""Go version for building the component"# depends on component's source code
90
90
configvar CSI_PROW_GO_VERSION_E2E """override Go version for building the Kubernetes E2E test suite"# normally doesn't need to be set, see install_e2e
91
91
configvar CSI_PROW_GO_VERSION_SANITY "${CSI_PROW_GO_VERSION_BUILD}""Go version for building the csi-sanity test suite"# depends on CSI_PROW_SANITY settings below
92
92
configvar CSI_PROW_GO_VERSION_KIND "${CSI_PROW_GO_VERSION_BUILD}""Go version for building 'kind'"# depends on CSI_PROW_KIND_VERSION below
@@ -245,7 +245,7 @@ configvar CSI_PROW_SANITY_CONTAINER "hostpath" "Kubernetes container with CSI dr
245
245
246
246
# The version of dep to use for 'make test-vendor'. Ignored if the project doesn't
247
247
# use dep. Only binary releases of dep are supported (https://github.com/golang/dep/releases).
248
-
configvar CSI_PROW_DEP_VERSION v0.5.1"golang dep version to be used for vendor checking"
248
+
configvar CSI_PROW_DEP_VERSION v0.5.4"golang dep version to be used for vendor checking"
249
249
250
250
# Each job can run one or more of the following tests, identified by
251
251
# a single word:
@@ -469,7 +469,7 @@ install_dep () {
469
469
if dep version 2>/dev/null | grep -q "version:.*${CSI_PROW_DEP_VERSION}$";then
470
470
return
471
471
fi
472
-
run curl --fail --location -o "${CSI_PROW_WORK}/bin/dep""https://github.com/golang/dep/releases/download/v0.5.4/dep-linux-amd64"&&
472
+
run curl --fail --location -o "${CSI_PROW_WORK}/bin/dep""https://github.com/golang/dep/releases/download/${CSI_PROW_DEP_VERSION}/dep-linux-amd64"&&
0 commit comments