mirror of https://github.com/knative/caching.git
upgrade to latest dependencies (#545)
bumping knative.dev/hack 815cd31...8687668: > 8687668 [# 50] Add error message when Bash < 4 (# 79) > 8d79600 Fixes # 81 (# 82) > 51582ce fix misspelling functionallity -> functionality (# 78) > 675e1fd Correctly specify the user when creating clusterrolebinding for kind (# 80) bumping knative.dev/pkg fa2f8f1...a5bb759: > a5bb759 upgrade to latest dependencies (# 2314) > e61a20d Update actions (# 2313) > 0e24b49 Format go code (# 2312) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
5bfedd5e15
commit
24eb330a0b
4
go.mod
4
go.mod
|
@ -20,6 +20,6 @@ require (
|
|||
k8s.io/client-go v0.21.4
|
||||
k8s.io/code-generator v0.21.4
|
||||
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7
|
||||
knative.dev/hack v0.0.0-20210806075220-815cd312d65c
|
||||
knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b
|
||||
knative.dev/hack v0.0.0-20211015200324-86876688e735
|
||||
knative.dev/pkg v0.0.0-20211015194524-a5bb75923981
|
||||
)
|
||||
|
|
7
go.sum
7
go.sum
|
@ -1083,10 +1083,11 @@ k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 h1:vEx13qjvaZ4yfObSSXW7Br
|
|||
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7/go.mod h1:wXW5VT87nVfh/iLV8FpR2uDvrFyomxbtb1KivDbvPTE=
|
||||
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 h1:CbnUZsM497iRC5QMVkHwyl8s2tB3g7yaSHkYPkpgelw=
|
||||
k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
||||
knative.dev/hack v0.0.0-20210806075220-815cd312d65c h1:nOXoDWAAItwr4o0dp3nHr6skgpVD4IvME/UX84YNl5k=
|
||||
knative.dev/hack v0.0.0-20210806075220-815cd312d65c/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||
knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b h1:k7qT8TtdbyU4koLF745VoBaM5EpUQlV2f13syN8f5L0=
|
||||
knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b/go.mod h1:r27D20afKNeK+9aNOg+0qMv8JgQcyeP+CAYQIR1jEQY=
|
||||
knative.dev/hack v0.0.0-20211015200324-86876688e735 h1:Hzdin9LVeUxF/xIE3XkqzkKFaS7EeVjPBZTRLe8mR5I=
|
||||
knative.dev/hack v0.0.0-20211015200324-86876688e735/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||
knative.dev/pkg v0.0.0-20211015194524-a5bb75923981 h1:mKwrhRdTvT4rZGfc0g49HHqIPHg4dHn3j9l7BAfR4ew=
|
||||
knative.dev/pkg v0.0.0-20211015194524-a5bb75923981/go.mod h1:r27D20afKNeK+9aNOg+0qMv8JgQcyeP+CAYQIR1jEQY=
|
||||
pgregory.net/rapid v0.3.3/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU=
|
||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||
|
|
|
@ -17,6 +17,6 @@ limitations under the License.
|
|||
*/
|
||||
|
||||
// package hack is a collection of scripts used to bootstrap CI processes and
|
||||
// other vital entrypoint functionallity.
|
||||
// other vital entrypoint functionality.
|
||||
|
||||
package hack
|
||||
|
|
|
@ -86,7 +86,7 @@ function acquire_cluster_admin_role() {
|
|||
--clusterrole=cluster-admin --user="$(gcloud config get-value core/account)"
|
||||
else
|
||||
kubectl create clusterrolebinding cluster-admin-binding \
|
||||
--clusterrole=cluster-admin --user="${USER}"
|
||||
--clusterrole=cluster-admin --user="prow"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -18,6 +18,12 @@
|
|||
# to be used in test scripts and the like. It doesn't do anything when
|
||||
# called from command line.
|
||||
|
||||
# Exit early with a message if Bash version is below 4
|
||||
if [ "${BASH_VERSINFO:-0}" -le 4 ]; then
|
||||
echo "library.sh script needs Bash version >=4 to run"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# GCP project where all tests related resources live
|
||||
readonly KNATIVE_TESTS_PROJECT=knative-tests
|
||||
|
||||
|
|
|
@ -307,7 +307,7 @@ function main() {
|
|||
fi
|
||||
fi
|
||||
|
||||
[[ -z $1 ]] && set -- "--all-tests"
|
||||
[[ -z ${1:-} ]] && set -- "--all-tests"
|
||||
|
||||
local TESTS_TO_RUN=()
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//go:build !ignore_autogenerated
|
||||
// +build !ignore_autogenerated
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//go:build !ignore_autogenerated
|
||||
// +build !ignore_autogenerated
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//go:build tools
|
||||
// +build tools
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//go:build !ignore_autogenerated
|
||||
// +build !ignore_autogenerated
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//go:build !ignore_autogenerated
|
||||
// +build !ignore_autogenerated
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//go:build !ignore_autogenerated
|
||||
// +build !ignore_autogenerated
|
||||
|
||||
/*
|
||||
|
|
|
@ -610,10 +610,10 @@ k8s.io/kube-openapi/pkg/util/sets
|
|||
k8s.io/utils/buffer
|
||||
k8s.io/utils/integer
|
||||
k8s.io/utils/trace
|
||||
# knative.dev/hack v0.0.0-20210806075220-815cd312d65c
|
||||
# knative.dev/hack v0.0.0-20211015200324-86876688e735
|
||||
## explicit
|
||||
knative.dev/hack
|
||||
# knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b
|
||||
# knative.dev/pkg v0.0.0-20211015194524-a5bb75923981
|
||||
## explicit
|
||||
knative.dev/pkg/apis
|
||||
knative.dev/pkg/apis/duck
|
||||
|
|
Loading…
Reference in New Issue