Skip to content

Commit 72bb244

Browse files
chore: Release/v1.39.10 (#8782)
* chore: add script to update lts dependencies * chore: change update-lts-dependencies.sh script and update deps * chore: update go deps
1 parent 7ef291c commit 72bb244

File tree

10 files changed

+267
-1511
lines changed

10 files changed

+267
-1511
lines changed

deploy/skaffold/Dockerfile.deps

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM alpine:3.10 as download-kubectl
1919
ARG ARCH
2020
# Track default version installed by Google Cloud SDK: 409.0.0 moved to 1.22(.14)
2121
# https://cloud.google.com/sdk/docs/release-notes
22-
ENV KUBECTL_VERSION v1.22.14
22+
ENV KUBECTL_VERSION v1.27.1
2323
ENV KUBECTL_URL https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl
2424
# SHAs at gs://kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/${ARCH}/
2525
COPY deploy/skaffold/digests/kubectl.${ARCH}.sha512 .
@@ -30,7 +30,7 @@ RUN chmod +x kubectl
3030
FROM alpine:3.10 as download-helm
3131
ARG ARCH
3232
RUN echo arch=$ARCH
33-
ENV HELM_VERSION v3.10.2
33+
ENV HELM_VERSION v3.12.0
3434
ENV HELM_URL https://get.helm.sh/helm-${HELM_VERSION}-linux-${ARCH}.tar.gz
3535
COPY deploy/skaffold/digests/helm.${ARCH}.sha256 .
3636
RUN wget -O helm.tar.gz "${HELM_URL}" && sha256sum -c helm.${ARCH}.sha256
@@ -39,7 +39,7 @@ RUN tar -xvf helm.tar.gz --strip-components 1
3939
# Download kustomize
4040
FROM alpine:3.10 as download-kustomize
4141
ARG ARCH
42-
ENV KUSTOMIZE_VERSION 4.4.0
42+
ENV KUSTOMIZE_VERSION 5.0.3
4343
ENV KUSTOMIZE_URL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_linux_${ARCH}.tar.gz
4444
COPY deploy/skaffold/digests/kustomize.${ARCH}.sha256 .
4545
RUN wget -O kustomize.tar.gz "${KUSTOMIZE_URL}" && sha256sum -c kustomize.${ARCH}.sha256
@@ -48,7 +48,7 @@ RUN tar -xvf kustomize.tar.gz
4848
# Download kpt
4949
FROM alpine:3.10 as download-kpt
5050
ARG ARCH
51-
ENV KPT_VERSION 0.39.3
51+
ENV KPT_VERSION 1.0.0-beta.32
5252
ENV KPT_URL https://github.com/GoogleContainerTools/kpt/releases/download/v${KPT_VERSION}/kpt_linux_amd64
5353
COPY deploy/skaffold/digests/kpt.${ARCH}.sha256 .
5454
RUN wget -O kpt "${KPT_URL}" && sha256sum -c kpt.${ARCH}.sha256
@@ -93,7 +93,7 @@ RUN chmod +x k3d
9393
# Download gcloud
9494
FROM alpine:3.10 as download-gcloud
9595
ARG ARCH
96-
ENV GCLOUD_VERSION 426.0.0
96+
ENV GCLOUD_VERSION 430.0.0
9797
ENV GCLOUD_URL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-${GCLOUD_VERSION}-linux-GCLOUDARCH.tar.gz
9898
# SHAs listed at https://cloud.google.com/sdk/docs/downloads-versioned-archives
9999
COPY deploy/skaffold/digests/gcloud.${ARCH}.sha256 .

deploy/skaffold/Dockerfile.deps.lts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM alpine:3.10 as download-kubectl
1919
ARG ARCH
2020
# Track default version installed by Google Cloud SDK: 409.0.0 moved to 1.22(.14)
2121
# https://cloud.google.com/sdk/docs/release-notes
22-
ENV KUBECTL_VERSION v1.22.14
22+
ENV KUBECTL_VERSION v1.27.1
2323
ENV KUBECTL_URL https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl
2424
# SHAs at gs://kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/${ARCH}/
2525
COPY deploy/skaffold/digests/kubectl.${ARCH}.sha512 .
@@ -30,7 +30,7 @@ RUN chmod +x kubectl
3030
FROM alpine:3.10 as download-helm
3131
ARG ARCH
3232
RUN echo arch=$ARCH
33-
ENV HELM_VERSION v3.10.2
33+
ENV HELM_VERSION v3.12.0
3434
ENV HELM_URL https://get.helm.sh/helm-${HELM_VERSION}-linux-${ARCH}.tar.gz
3535
COPY deploy/skaffold/digests/helm.${ARCH}.sha256 .
3636
RUN wget -O helm.tar.gz "${HELM_URL}" && sha256sum -c helm.${ARCH}.sha256
@@ -39,7 +39,7 @@ RUN tar -xvf helm.tar.gz --strip-components 1
3939
# Download kustomize
4040
FROM alpine:3.10 as download-kustomize
4141
ARG ARCH
42-
ENV KUSTOMIZE_VERSION 4.4.0
42+
ENV KUSTOMIZE_VERSION 5.0.3
4343
ENV KUSTOMIZE_URL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_linux_${ARCH}.tar.gz
4444
COPY deploy/skaffold/digests/kustomize.${ARCH}.sha256 .
4545
RUN wget -O kustomize.tar.gz "${KUSTOMIZE_URL}" && sha256sum -c kustomize.${ARCH}.sha256
@@ -48,7 +48,7 @@ RUN tar -xvf kustomize.tar.gz
4848
# Download kpt
4949
FROM alpine:3.10 as download-kpt
5050
ARG ARCH
51-
ENV KPT_VERSION 0.39.3
51+
ENV KPT_VERSION 1.0.0-beta.32
5252
ENV KPT_URL https://github.com/GoogleContainerTools/kpt/releases/download/v${KPT_VERSION}/kpt_linux_amd64
5353
COPY deploy/skaffold/digests/kpt.${ARCH}.sha256 .
5454
RUN wget -O kpt "${KPT_URL}" && sha256sum -c kpt.${ARCH}.sha256
@@ -57,7 +57,7 @@ RUN chmod +x kpt
5757
# Download gcloud
5858
FROM alpine:3.10 as download-gcloud
5959
ARG ARCH
60-
ENV GCLOUD_VERSION 426.0.0
60+
ENV GCLOUD_VERSION 430.0.0
6161
ENV GCLOUD_URL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-${GCLOUD_VERSION}-linux-GCLOUDARCH.tar.gz
6262
# SHAs listed at https://cloud.google.com/sdk/docs/downloads-versioned-archives
6363
COPY deploy/skaffold/digests/gcloud.${ARCH}.sha256 .
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c653a8ac1e48889005fd00e2de580a27be5a3cb46ceccc570146982c4ddf4245 gcloud.tar.gz
1+
a10844ec4e5af0e9f8c814ab765018bd40006c43e23b9f98cb25388848facea6 gcloud.tar.gz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2315941a13291c277dac9f65e75ead56386440d3907e0540bf157ae70f188347 helm.tar.gz
1+
da36e117d6dbc57c8ec5bab2283222fbd108db86c83389eebe045ad1ef3e2c3b helm.tar.gz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3acf9123f98b0816d86d6abbcdcfbf15c6053a830105233534a14dbbd0387ed7 kpt
1+
227a6a4fdb391c53b74516a25964d61f63e5aa4e1fa19920fcc76603dc752871 kpt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1db59414e8e352ddf53968cc38f7bb195f17c6bae6c804fecb394870f005e3a495ab0b1de98b541dae691fd5463c62a275247e5ae867a8c57577ed0363d245f8 kubectl
1+
45c837500fd821553a76dfec626cbbe44ac9c5c2c82984e8cd1073615ed4707e69b0f6bd7adf001e0ddbcc89ccc7bca38162e7ee778473d59a09c91f3d99f7c2 kubectl
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bf3a0d7409d9ce6a4a393ba61289047b4cb875a36ece1ec94b36924a9ccbaa0f kustomize.tar.gz
1+
c627b1575c3fecbc7ad1c181c23a7adcacf19732dab627eb57e89a7bc4c1e929 kustomize.tar.gz

go.mod

Lines changed: 41 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
4d63.com/tz v1.2.0
2222
cloud.google.com/go/monitoring v1.13.0
2323
cloud.google.com/go/profiler v0.1.0
24-
cloud.google.com/go/storage v1.28.1
24+
cloud.google.com/go/storage v1.29.0
2525
github.com/AlecAivazis/survey/v2 v2.2.15
2626
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.35.1
2727
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.11.1
@@ -36,18 +36,18 @@ require (
3636
github.com/cenkalti/backoff/v4 v4.2.0
3737
github.com/containerd/containerd v1.6.18
3838
github.com/docker/cli v23.0.1+incompatible
39-
github.com/docker/distribution v2.8.1+incompatible
40-
github.com/docker/docker v20.10.20+incompatible
39+
github.com/docker/distribution v2.8.2-beta.1+incompatible
40+
github.com/docker/docker v20.10.24+incompatible
4141
github.com/docker/go-connections v0.4.0
4242
github.com/dustin/go-humanize v1.0.1
4343
github.com/go-git/go-git/v5 v5.6.1
4444
github.com/golang/glog v1.0.0
4545
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
4646
github.com/golang/protobuf v1.5.3
4747
github.com/google/go-cmp v0.5.9
48-
github.com/google/go-containerregistry v0.11.0
48+
github.com/google/go-containerregistry v0.13.1-0.20230310164735-e94d40893b2d
4949
github.com/google/go-github v17.0.0+incompatible
50-
github.com/google/ko v0.12.0
50+
github.com/google/ko v0.13.0
5151
github.com/google/uuid v1.3.0
5252
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3
5353
github.com/heroku/color v0.0.6
@@ -69,7 +69,7 @@ require (
6969
github.com/segmentio/textio v1.2.0
7070
github.com/sirupsen/logrus v1.9.0
7171
github.com/spf13/afero v1.9.3
72-
github.com/spf13/cobra v1.6.1
72+
github.com/spf13/cobra v1.7.0
7373
github.com/spf13/pflag v1.0.5
7474
github.com/xeipuuv/gojsonschema v1.2.0
7575
go.lsp.dev/jsonrpc2 v0.9.0
@@ -83,14 +83,14 @@ require (
8383
go.opentelemetry.io/otel/sdk v1.14.0
8484
go.opentelemetry.io/otel/sdk/metric v0.37.0
8585
go.opentelemetry.io/otel/trace v1.14.0
86-
golang.org/x/mod v0.9.0
87-
golang.org/x/oauth2 v0.6.0
86+
golang.org/x/mod v0.10.0
87+
golang.org/x/oauth2 v0.7.0
8888
golang.org/x/sync v0.1.0
89-
golang.org/x/sys v0.6.0
90-
golang.org/x/term v0.6.0
89+
golang.org/x/sys v0.7.0
90+
golang.org/x/term v0.7.0
9191
golang.org/x/tools v0.7.0
92-
google.golang.org/api v0.114.0
93-
google.golang.org/genproto v0.0.0-20230327215041-6ac7f18bb9d5
92+
google.golang.org/api v0.119.0
93+
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
9494
google.golang.org/grpc v1.54.0
9595
google.golang.org/protobuf v1.30.0
9696
gopkg.in/yaml.v2 v2.4.0
@@ -132,36 +132,30 @@ require (
132132
github.com/acomagu/bufpipe v1.0.4 // indirect
133133
github.com/alessio/shellescape v1.4.1 // indirect
134134
github.com/apex/log v1.9.0 // indirect
135-
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
136-
github.com/aws/aws-sdk-go-v2 v1.17.5 // indirect
137-
github.com/aws/aws-sdk-go-v2/config v1.18.15 // indirect
138-
github.com/aws/aws-sdk-go-v2/credentials v1.13.15 // indirect
139-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.23 // indirect
140-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.29 // indirect
141-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.23 // indirect
142-
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.30 // indirect
135+
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
136+
github.com/aws/aws-sdk-go-v2 v1.17.8 // indirect
137+
github.com/aws/aws-sdk-go-v2/config v1.18.21 // indirect
138+
github.com/aws/aws-sdk-go-v2/credentials v1.13.20 // indirect
139+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.2 // indirect
140+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.32 // indirect
141+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.26 // indirect
142+
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.33 // indirect
143143
github.com/aws/aws-sdk-go-v2/service/ecr v1.18.2 // indirect
144144
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.15.1 // indirect
145-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.23 // indirect
146-
github.com/aws/aws-sdk-go-v2/service/sso v1.12.4 // indirect
147-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.4 // indirect
148-
github.com/aws/aws-sdk-go-v2/service/sts v1.18.5 // indirect
145+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.26 // indirect
146+
github.com/aws/aws-sdk-go-v2/service/sso v1.12.8 // indirect
147+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.8 // indirect
148+
github.com/aws/aws-sdk-go-v2/service/sts v1.18.9 // indirect
149149
github.com/aws/smithy-go v1.13.5 // indirect
150150
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20230206222643-feb497de7dbc // indirect
151151
github.com/beorn7/perks v1.0.1 // indirect
152152
github.com/cespare/xxhash/v2 v2.2.0 // indirect
153-
github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect
154153
github.com/chrismellard/docker-credential-acr-env v0.0.0-20221129204813-6a4d6ed5d396 // indirect
155-
github.com/cilium/ebpf v0.9.1 // indirect
156154
github.com/cloudflare/circl v1.1.0 // indirect
157155
github.com/containerd/cgroups v1.1.0 // indirect
158-
github.com/containerd/console v1.0.3 // indirect
159156
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
160157
github.com/containerd/ttrpc v1.2.1 // indirect
161158
github.com/containerd/typeurl v1.0.2 // indirect
162-
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
163-
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
164-
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
165159
github.com/davecgh/go-spew v1.1.1 // indirect
166160
github.com/dimchansky/utfbom v1.1.1 // indirect
167161
github.com/docker/docker-credential-helpers v0.7.0 // indirect
@@ -186,22 +180,22 @@ require (
186180
github.com/go-openapi/jsonpointer v0.19.6 // indirect
187181
github.com/go-openapi/jsonreference v0.20.2 // indirect
188182
github.com/go-openapi/loads v0.21.2 // indirect
189-
github.com/go-openapi/runtime v0.25.0 // indirect
190-
github.com/go-openapi/spec v0.20.8 // indirect
191-
github.com/go-openapi/strfmt v0.21.3 // indirect
183+
github.com/go-openapi/runtime v0.26.0 // indirect
184+
github.com/go-openapi/spec v0.20.9 // indirect
185+
github.com/go-openapi/strfmt v0.21.7 // indirect
192186
github.com/go-openapi/swag v0.22.3 // indirect
193187
github.com/go-openapi/validate v0.22.1 // indirect
194-
github.com/godbus/dbus/v5 v5.0.6 // indirect
195188
github.com/gogo/protobuf v1.3.2 // indirect
196189
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
197190
github.com/google/gnostic v0.6.9 // indirect
198191
github.com/google/go-querystring v1.1.0 // indirect
199192
github.com/google/gofuzz v1.2.0 // indirect
200193
github.com/google/pprof v0.0.0-20210804190019-f964ff605595 // indirect
194+
github.com/google/s2a-go v0.1.2 // indirect
201195
github.com/google/safetext v0.0.0-20230106111101-7156a760e523 // indirect
202196
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
203197
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
204-
github.com/googleapis/gax-go/v2 v2.7.1 // indirect
198+
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
205199
github.com/gorilla/mux v1.8.0 // indirect
206200
github.com/hashicorp/hcl v1.0.0 // indirect
207201
github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -230,55 +224,48 @@ require (
230224
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
231225
github.com/modern-go/reflect2 v1.0.2 // indirect
232226
github.com/morikuni/aec v1.0.0 // indirect
233-
github.com/mrunalp/fileutils v0.5.0 // indirect
234227
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
235228
github.com/oklog/ulid v1.3.1 // indirect
236229
github.com/opencontainers/runc v1.1.5 // indirect
237-
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 // indirect
238230
github.com/opencontainers/selinux v1.11.0 // indirect
239231
github.com/pelletier/go-toml v1.9.5 // indirect
240232
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
241233
github.com/pjbgf/sha1cd v0.3.0 // indirect
242-
github.com/prometheus/client_golang v1.14.0 // indirect
234+
github.com/prometheus/client_golang v1.15.0 // indirect
243235
github.com/prometheus/client_model v0.3.0 // indirect
244-
github.com/prometheus/common v0.37.0 // indirect
245-
github.com/prometheus/procfs v0.8.0 // indirect
236+
github.com/prometheus/common v0.42.0 // indirect
237+
github.com/prometheus/procfs v0.9.0 // indirect
246238
github.com/rivo/tview v0.0.0-20210624165335-29d673af0ce2 // indirect
247239
github.com/rivo/uniseg v0.2.0 // indirect
248240
github.com/russross/blackfriday v1.6.0 // indirect
249241
github.com/sabhiram/go-gitignore v0.0.0-20201211074657-223ce5d391b0 // indirect
250-
github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 // indirect
251242
github.com/segmentio/encoding v0.2.7 // indirect
252243
github.com/sergi/go-diff v1.2.0 // indirect
253-
github.com/sigstore/cosign v1.13.1 // indirect
254-
github.com/sigstore/rekor v1.0.1 // indirect
255-
github.com/sigstore/sigstore v1.6.0 // indirect
244+
github.com/sigstore/cosign/v2 v2.0.0 // indirect
245+
github.com/sigstore/rekor v1.1.1 // indirect
246+
github.com/sigstore/sigstore v1.6.3 // indirect
256247
github.com/skeema/knownhosts v1.1.0 // indirect
257248
github.com/spf13/cast v1.5.0 // indirect
258249
github.com/spf13/jwalterweatherman v1.1.0 // indirect
259250
github.com/spf13/viper v1.15.0 // indirect
260251
github.com/src-d/gcfg v1.4.0 // indirect
261252
github.com/subosito/gotenv v1.4.2 // indirect
262-
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
263253
github.com/theupdateframework/go-tuf v0.5.2 // indirect
264254
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect
265-
github.com/urfave/cli v1.22.7 // indirect
266255
github.com/vbatts/tar-split v0.11.2 // indirect
267-
github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 // indirect
268-
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
269256
github.com/xanzy/ssh-agent v0.3.3 // indirect
270257
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
271258
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
272259
go.lsp.dev/pkg v0.0.0-20210323044036-f7deec69b52e // indirect
273-
go.mongodb.org/mongo-driver v1.11.1 // indirect
260+
go.mongodb.org/mongo-driver v1.11.3 // indirect
274261
go.opencensus.io v0.24.0 // indirect
275262
go.uber.org/atomic v1.10.0 // indirect
276263
go.uber.org/automaxprocs v1.5.1 // indirect
277264
go.uber.org/multierr v1.9.0 // indirect
278265
go.uber.org/zap v1.24.0 // indirect
279-
golang.org/x/crypto v0.7.0 // indirect
280-
golang.org/x/net v0.8.0 // indirect
281-
golang.org/x/text v0.8.0 // indirect
266+
golang.org/x/crypto v0.8.0 // indirect
267+
golang.org/x/net v0.9.0 // indirect
268+
golang.org/x/text v0.9.0 // indirect
282269
golang.org/x/time v0.3.0 // indirect
283270
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
284271
google.golang.org/appengine v1.6.7 // indirect
@@ -288,9 +275,10 @@ require (
288275
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect
289276
gopkg.in/src-d/go-git.v4 v4.13.1 // indirect
290277
gopkg.in/warnings.v0 v0.1.2 // indirect
278+
gotest.tools/v3 v3.1.0 // indirect
291279
k8s.io/klog/v2 v2.90.1 // indirect
292280
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
293-
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
281+
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
294282
sigs.k8s.io/kind v0.17.0 // indirect
295283
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
296284
)

0 commit comments

Comments
 (0)