mirror of https://github.com/knative/pkg.git
upgrade to latest dependencies (#2385)
bumping knative.dev/hack e11ac12...f08cb0d: > f08cb0d Fixing issue knative/hack# 136 (# 137) > abd085f Update community files (# 131) > 6fc0304 Update community files (# 130) > 92d8a0a Update community files (# 129) > 50bb1cb Update community files (# 128) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
96f18522d7
commit
80b253f230
2
go.mod
2
go.mod
|
|
@ -51,6 +51,6 @@ require (
|
|||
k8s.io/code-generator v0.22.5
|
||||
k8s.io/gengo v0.0.0-20211129171323-c02415ce4185
|
||||
k8s.io/klog v1.0.0
|
||||
knative.dev/hack v0.0.0-20211203062838-e11ac125e707
|
||||
knative.dev/hack v0.0.0-20220110200259-f08cb0dcdee7
|
||||
sigs.k8s.io/yaml v1.3.0
|
||||
)
|
||||
|
|
|
|||
4
go.sum
4
go.sum
|
|
@ -1155,8 +1155,8 @@ k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c h1:jvamsI1tn9V0S8jicyX82q
|
|||
k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c/go.mod h1:vHXdDvt9+2spS2Rx9ql3I8tycm3H9FDfdUoIuKCefvw=
|
||||
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a h1:8dYfu/Fc9Gz2rNJKB9IQRGgQOh2clmRzNIPPY1xLY5g=
|
||||
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
||||
knative.dev/hack v0.0.0-20211203062838-e11ac125e707 h1:Nx3HBoTHjYzXT9xxh5j6A8pMapNqyDLqjl784YxWPDQ=
|
||||
knative.dev/hack v0.0.0-20211203062838-e11ac125e707/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||
knative.dev/hack v0.0.0-20220110200259-f08cb0dcdee7 h1:TPnyJuwP2cRXUZvLFSkGPzc/gEavAnj/HcV1Ut7UA+U=
|
||||
knative.dev/hack v0.0.0-20220110200259-f08cb0dcdee7/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||
pgregory.net/rapid v0.3.3 h1:jCjBsY4ln4Atz78QoBWxUEvAHaFyNDQg9+WU62aCn1U=
|
||||
pgregory.net/rapid v0.3.3/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU=
|
||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
# This is a helper script for Knative E2E test scripts.
|
||||
# See README.md for instructions on how to use it.
|
||||
|
||||
source $(dirname "${BASH_SOURCE[0]}")/infra-library.sh
|
||||
source "$(dirname "${BASH_SOURCE[0]:-$0}")/infra-library.sh"
|
||||
|
||||
readonly TEST_RESULT_FILE=/tmp/${REPO_NAME}-e2e-result
|
||||
|
||||
|
|
@ -29,8 +29,12 @@ function teardown_test_resources() {
|
|||
# On boskos, save time and don't teardown as the cluster will be destroyed anyway.
|
||||
(( IS_BOSKOS )) && return
|
||||
header "Tearing down test environment"
|
||||
function_exists test_teardown && test_teardown
|
||||
function_exists knative_teardown && knative_teardown
|
||||
if function_exists test_teardown; then
|
||||
test_teardown
|
||||
fi
|
||||
if function_exists knative_teardown; then
|
||||
knative_teardown
|
||||
fi
|
||||
}
|
||||
|
||||
# Run the given E2E tests. Assume tests are tagged e2e, unless `-tags=XXX` is passed.
|
||||
|
|
|
|||
|
|
@ -1015,7 +1015,7 @@ k8s.io/utils/buffer
|
|||
k8s.io/utils/integer
|
||||
k8s.io/utils/pointer
|
||||
k8s.io/utils/trace
|
||||
# knative.dev/hack v0.0.0-20211203062838-e11ac125e707
|
||||
# knative.dev/hack v0.0.0-20220110200259-f08cb0dcdee7
|
||||
## explicit
|
||||
knative.dev/hack
|
||||
# sigs.k8s.io/structured-merge-diff/v4 v4.1.2
|
||||
|
|
|
|||
Loading…
Reference in New Issue