Skip to content

Commit e068b8d

Browse files
authored
chore: Enable Go jsonv2 experiment and update the trivy dependency (v0.67.2) (#3572)
It requires the encoding/json/jsontext package which is only available when the goexperiment.jsonv2 build tag is enabled. This was causing build constraint errors during tests and builds. Changes: - Add GOEXPERIMENT=jsonv2 to Makefile export and all go build/test commands that use env (since env creates a fresh environment) - Add GOEXPERIMENT=jsonv2 to GitHub workflows that use direct go commands (workflows using make inherit it from Makefile) Fix other dependabot alerts. Signed-off-by: Andrei Aaron <andreifdaaron@gmail.com>
1 parent 6452bec commit e068b8d

7 files changed

Lines changed: 101 additions & 127 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
4040
env:
4141
CGO_ENABLED: 0
42+
GOEXPERIMENT: jsonv2
4243
GOFLAGS: "-tags=sync,search,scrub,metrics,userprefs,mgmt,imagetrust"
4344

4445
steps:

.github/workflows/golangci-lint.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242

4343
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
4444
# skip-build-cache: true
45+
env:
46+
GOEXPERIMENT: jsonv2
4547
- name: Run linter from make target
4648
run: |
4749
make check

Makefile

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export GO111MODULE=on
2+
export GOEXPERIMENT=jsonv2
23
SHELL := /bin/bash
34
TOP_LEVEL=$(shell git rev-parse --show-toplevel)
45
COMMIT_HASH=$(shell git describe --always --tags --long)
@@ -128,9 +129,9 @@ swaggercheck: swagger
128129
.PHONY: build-metadata
129130
build-metadata: $(if $(findstring ui,$(BUILD_LABELS)), ui)
130131
echo "Imports: \n"
131-
go list $(GO_CMD_TAGS) -f '{{ join .Imports "\n" }}' ./... | sort -u
132+
env GOEXPERIMENT=jsonv2 go list $(GO_CMD_TAGS) -f '{{ join .Imports "\n" }}' ./... | sort -u
132133
echo "\n Files: \n"
133-
go list $(GO_CMD_TAGS) -f '{{ join .GoFiles "\n" }}' ./... | sort -u
134+
env GOEXPERIMENT=jsonv2 go list $(GO_CMD_TAGS) -f '{{ join .GoFiles "\n" }}' ./... | sort -u
134135

135136
.PHONY: gen-protobuf
136137
gen-protobuf: $(PROTOC)
@@ -180,53 +181,53 @@ gen-protobuf: $(PROTOC)
180181
.PHONY: binary-minimal
181182
binary-minimal: EXTENSIONS=
182183
binary-minimal: modcheck build-metadata
183-
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-minimal$(BIN_EXT) $(BUILDMODE_FLAGS) -v -trimpath -ldflags "-X $(CONFIG_RELEASE_TAG)=${RELEASE_TAG} -X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=minimal -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zot
184+
env CGO_ENABLED=0 GOEXPERIMENT=jsonv2 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-minimal$(BIN_EXT) $(BUILDMODE_FLAGS) -v -trimpath -ldflags "-X $(CONFIG_RELEASE_TAG)=${RELEASE_TAG} -X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=minimal -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zot
184185

185186
.PHONY: binary
186187
binary: $(if $(findstring ui,$(BUILD_LABELS)), ui)
187188
binary: modcheck build-metadata
188-
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) $(GO_CMD_TAGS) -v -trimpath -ldflags "-X $(CONFIG_RELEASE_TAG)=${RELEASE_TAG} -X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zot
189+
env CGO_ENABLED=0 GOEXPERIMENT=jsonv2 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) $(GO_CMD_TAGS) -v -trimpath -ldflags "-X $(CONFIG_RELEASE_TAG)=${RELEASE_TAG} -X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zot
189190

190191
.PHONY: binary-debug
191192
binary-debug: $(if $(findstring ui,$(BUILD_LABELS)), ui)
192193
binary-debug: modcheck swaggercheck build-metadata
193-
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-debug$(BIN_EXT) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),debug -v -gcflags all='-N -l' -ldflags "-X $(CONFIG_RELEASE_TAG)=${RELEASE_TAG} -X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION}" ./cmd/zot
194+
env CGO_ENABLED=0 GOEXPERIMENT=jsonv2 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-debug$(BIN_EXT) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),debug -v -gcflags all='-N -l' -ldflags "-X $(CONFIG_RELEASE_TAG)=${RELEASE_TAG} -X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION}" ./cmd/zot
194195

195196
.PHONY: cli
196197
cli: modcheck build-metadata
197-
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zli-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),search -v -trimpath -ldflags "-X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zli
198+
env CGO_ENABLED=0 GOEXPERIMENT=jsonv2 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zli-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),search -v -trimpath -ldflags "-X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zli
198199

199200
.PHONY: bench
200201
bench: modcheck build-metadata
201-
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zb-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) $(GO_CMD_TAGS) -v -trimpath -ldflags "-X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zb
202+
env CGO_ENABLED=0 GOEXPERIMENT=jsonv2 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zb-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) $(GO_CMD_TAGS) -v -trimpath -ldflags "-X $(CONFIG_COMMIT)=${COMMIT} -X $(CONFIG_BINARY_TYPE)=$(extended-name) -X $(CONFIG_GO_VERSION)=${GO_VERSION} -s -w" ./cmd/zb
202203

203204
.PHONY: exporter-minimal
204205
exporter-minimal: EXTENSIONS=
205206
exporter-minimal: modcheck build-metadata
206-
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zxp-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) -v -trimpath ./cmd/zxp
207+
env CGO_ENABLED=0 GOEXPERIMENT=jsonv2 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zxp-$(OS)-$(ARCH)$(BIN_EXT) $(BUILDMODE_FLAGS) -v -trimpath ./cmd/zxp
207208

208209
.PHONY: test-prereq
209210
test-prereq: check-skopeo $(TESTDATA) $(ORAS)
210211

211212
.PHONY: test-extended
212213
test-extended: $(if $(findstring ui,$(BUILD_LABELS)), ui)
213214
test-extended: test-prereq
214-
go test -failfast $(GO_CMD_TAGS) -trimpath -race -timeout 20m -cover -coverpkg ./... -coverprofile=coverage-extended.txt -covermode=atomic ./...
215+
env GOEXPERIMENT=jsonv2 go test -failfast $(GO_CMD_TAGS) -trimpath -race -timeout 20m -cover -coverpkg ./... -coverprofile=coverage-extended.txt -covermode=atomic ./...
215216
rm -rf /tmp/getter*; rm -rf /tmp/trivy*
216217

217218
.PHONY: test-minimal
218219
test-minimal: test-prereq
219-
go test -failfast -trimpath -race -cover -coverpkg ./... -coverprofile=coverage-minimal.txt -covermode=atomic ./...
220+
env GOEXPERIMENT=jsonv2 go test -failfast -trimpath -race -cover -coverpkg ./... -coverprofile=coverage-minimal.txt -covermode=atomic ./...
220221
rm -rf /tmp/getter*; rm -rf /tmp/trivy*
221222

222223
.PHONY: test-devmode
223224
test-devmode: $(if $(findstring ui,$(BUILD_LABELS)), ui)
224225
test-devmode: testdata-certs
225-
go test -failfast -tags dev,$(BUILD_LABELS) -trimpath -race -timeout 15m -cover -coverpkg ./... -coverprofile=coverage-dev-extended.txt -covermode=atomic ./pkg/test/... ./pkg/api/... ./pkg/storage/... ./pkg/extensions/sync/... -run ^TestInject
226+
env GOEXPERIMENT=jsonv2 go test -failfast -tags dev,$(BUILD_LABELS) -trimpath -race -timeout 15m -cover -coverpkg ./... -coverprofile=coverage-dev-extended.txt -covermode=atomic ./pkg/test/... ./pkg/api/... ./pkg/storage/... ./pkg/extensions/sync/... -run ^TestInject
226227
rm -rf /tmp/getter*; rm -rf /tmp/trivy*
227-
go test -failfast -tags dev -trimpath -race -cover -coverpkg ./... -coverprofile=coverage-dev-minimal.txt -covermode=atomic ./pkg/test/... ./pkg/storage/... ./pkg/extensions/sync/... -run ^TestInject
228+
env GOEXPERIMENT=jsonv2 go test -failfast -tags dev -trimpath -race -cover -coverpkg ./... -coverprofile=coverage-dev-minimal.txt -covermode=atomic ./pkg/test/... ./pkg/storage/... ./pkg/extensions/sync/... -run ^TestInject
228229
rm -rf /tmp/getter*; rm -rf /tmp/trivy*
229-
go test -failfast -tags stress,$(BUILD_LABELS) -trimpath -race -timeout 15m ./pkg/cli/server/stress_test.go
230+
env GOEXPERIMENT=jsonv2 go test -failfast -tags stress,$(BUILD_LABELS) -trimpath -race -timeout 15m ./pkg/cli/server/stress_test.go
230231

231232
.PHONY: test
232233
test: $(if $(findstring ui,$(BUILD_LABELS)), ui)
@@ -235,7 +236,7 @@ test: test-extended test-minimal test-devmode
235236
.PHONY: privileged-test
236237
privileged-test: $(if $(findstring ui,$(BUILD_LABELS)), ui)
237238
privileged-test: testdata-certs
238-
go test -failfast -tags needprivileges,$(BUILD_LABELS) -trimpath -race -timeout 15m -cover -coverpkg ./... -coverprofile=coverage-dev-needprivileges.txt -covermode=atomic ./pkg/storage/local/... ./pkg/cli/client/... -run ^TestElevatedPrivileges
239+
env GOEXPERIMENT=jsonv2 go test -failfast -tags needprivileges,$(BUILD_LABELS) -trimpath -race -timeout 15m -cover -coverpkg ./... -coverprofile=coverage-dev-needprivileges.txt -covermode=atomic ./pkg/storage/local/... ./pkg/cli/client/... -run ^TestElevatedPrivileges
239240

240241
.PHONY: testdata-certs
241242
testdata-certs:

cmd/zb/perf.go

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -733,18 +733,17 @@ func Perf(
733733

734734
for range concurrency {
735735
// parallelize with clients
736-
wg.Go(
737-
func() {
738-
httpClient, err := getRandomClientIPs(auth, url, ips)
739-
if err != nil {
740-
fatalWithCleanup(err)
741-
}
742-
743-
err = tconfig.tfunc(workdir, url, repo, requests/concurrency, tconfig, statsCh, httpClient, skipCleanup)
744-
if err != nil {
745-
fatalWithCleanup(err)
746-
}
747-
})
736+
wg.Go(func() {
737+
httpClient, err := getRandomClientIPs(auth, url, ips)
738+
if err != nil {
739+
fatalWithCleanup(err)
740+
}
741+
742+
err = tconfig.tfunc(workdir, url, repo, requests/concurrency, tconfig, statsCh, httpClient, skipCleanup)
743+
if err != nil {
744+
fatalWithCleanup(err)
745+
}
746+
})
748747
}
749748

750749
wg.Wait()

go.mod

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ require (
77
github.com/GehirnInc/crypt v0.0.0-20230320061759-8cc1b52080c5
88
github.com/Masterminds/semver v1.5.0
99
github.com/alicebob/miniredis/v2 v2.35.0
10-
github.com/aquasecurity/trivy v0.65.0
11-
github.com/aquasecurity/trivy-db v0.0.0-20250723062229-56ec1e482238
10+
github.com/aquasecurity/trivy v0.67.2
11+
github.com/aquasecurity/trivy-db v0.0.0-20250929072116-eba1ced2340a
1212
github.com/aws/aws-sdk-go v1.55.8
1313
github.com/aws/aws-sdk-go-v2 v1.40.0
1414
github.com/aws/aws-sdk-go-v2/config v1.32.1
@@ -105,6 +105,7 @@ require (
105105
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
106106
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.19.1 // indirect
107107
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.12.0 // indirect
108+
github.com/Azure/azure-sdk-for-go/sdk/containers/azcontainerregistry v0.2.3 // indirect
108109
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2 // indirect
109110
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
110111
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
@@ -130,7 +131,7 @@ require (
130131
github.com/KyleBanks/depth v1.2.1 // indirect
131132
github.com/MakeNowJust/heredoc v1.0.0 // indirect
132133
github.com/Masterminds/goutils v1.1.1 // indirect
133-
github.com/Masterminds/semver/v3 v3.3.1 // indirect
134+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
134135
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
135136
github.com/Masterminds/squirrel v1.5.4 // indirect
136137
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -168,18 +169,22 @@ require (
168169
github.com/aquasecurity/trivy-checks v1.11.3-0.20250604022615-9a7efa7c9169 // indirect
169170
github.com/aquasecurity/trivy-java-db v0.0.0-20240109071736-184bd7481d48 // indirect
170171
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
172+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.1 // indirect
171173
github.com/aws/aws-sdk-go-v2/credentials v1.19.1 // indirect
172174
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.14 // indirect
173175
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.14 // indirect
174176
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.14 // indirect
175177
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect
178+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.9 // indirect
176179
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.32.5 // indirect
177180
github.com/aws/aws-sdk-go-v2/service/ebs v1.25.3 // indirect
178-
github.com/aws/aws-sdk-go-v2/service/ec2 v1.234.0 // indirect
181+
github.com/aws/aws-sdk-go-v2/service/ec2 v1.253.0 // indirect
179182
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.33.2 // indirect
180183
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.3 // indirect
184+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.8.9 // indirect
181185
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.14 // indirect
182186
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.14 // indirect
187+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.9 // indirect
183188
github.com/aws/aws-sdk-go-v2/service/s3 v1.88.3 // indirect
184189
github.com/aws/aws-sdk-go-v2/service/signin v1.0.1 // indirect
185190
github.com/aws/aws-sdk-go-v2/service/sso v1.30.4 // indirect
@@ -234,12 +239,12 @@ require (
234239
github.com/dimchansky/utfbom v1.1.1 // indirect
235240
github.com/distribution/reference v0.6.0 // indirect
236241
github.com/dlclark/regexp2 v1.11.2 // indirect
237-
github.com/docker/cli v28.3.2+incompatible // indirect
242+
github.com/docker/cli v28.3.3+incompatible // indirect
238243
github.com/docker/distribution v2.8.3+incompatible // indirect
239244
github.com/docker/docker v28.3.3+incompatible // indirect
240245
github.com/docker/docker-credential-helpers v0.9.3 // indirect
241246
github.com/docker/go v1.5.1-1 // indirect
242-
github.com/docker/go-connections v0.5.0 // indirect
247+
github.com/docker/go-connections v0.6.0 // indirect
243248
github.com/docker/go-metrics v0.0.1 // indirect
244249
github.com/docker/go-units v0.5.0 // indirect
245250
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
@@ -264,7 +269,6 @@ require (
264269
github.com/go-ini/ini v1.67.0 // indirect
265270
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
266271
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
267-
github.com/go-json-experiment/json v0.0.0-20250223041408-d3c622f1b874 // indirect
268272
github.com/go-logr/logr v1.4.3 // indirect
269273
github.com/go-logr/stdr v1.2.2 // indirect
270274
github.com/go-openapi/analysis v0.24.0 // indirect
@@ -309,18 +313,17 @@ require (
309313
github.com/google/go-tpm v0.9.7 // indirect
310314
github.com/google/licenseclassifier/v2 v2.0.0 // indirect
311315
github.com/google/s2a-go v0.1.9 // indirect
312-
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
313-
github.com/google/wire v0.6.0 // indirect
314316
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
315317
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
316318
github.com/gopherjs/gopherjs v1.17.2 // indirect
317319
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
318320
github.com/gosuri/uitable v0.0.4 // indirect
319321
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
320322
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect
323+
github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.65 // indirect
321324
github.com/hashicorp/errwrap v1.1.0 // indirect
322325
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
323-
github.com/hashicorp/go-getter v1.7.9 // indirect
326+
github.com/hashicorp/go-getter v1.8.1 // indirect
324327
github.com/hashicorp/go-multierror v1.1.1 // indirect
325328
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
326329
github.com/hashicorp/go-safetemp v1.0.0 // indirect
@@ -356,7 +359,6 @@ require (
356359
github.com/lestrrat-go/option v1.0.1 // indirect
357360
github.com/lestrrat-go/option/v2 v2.0.0 // indirect
358361
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec // indirect
359-
github.com/liamg/memoryfs v1.6.0 // indirect
360362
github.com/lib/pq v1.10.9 // indirect
361363
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
362364
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
@@ -416,10 +418,11 @@ require (
416418
github.com/opencontainers/runtime-spec v1.2.1 // indirect
417419
github.com/opencontainers/selinux v1.13.0 // indirect
418420
github.com/openvex/discovery v0.1.1-0.20240802171711-7c54efc57553 // indirect
419-
github.com/openvex/go-vex v0.2.5 // indirect
421+
github.com/openvex/go-vex v0.2.7 // indirect
420422
github.com/owenrumney/go-sarif/v2 v2.3.3 // indirect
421423
github.com/owenrumney/squealer v1.2.11 // indirect
422424
github.com/package-url/packageurl-go v0.1.3 // indirect
425+
github.com/pandatix/go-cvss v0.6.2 // indirect
423426
github.com/pborman/uuid v1.2.1 // indirect
424427
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
425428
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
@@ -499,7 +502,7 @@ require (
499502
github.com/xlab/treeprint v1.2.0 // indirect
500503
github.com/yashtewari/glob-intersection v0.2.0 // indirect
501504
github.com/yuin/gopher-lua v1.1.1 // indirect
502-
github.com/zclconf/go-cty v1.16.3 // indirect
505+
github.com/zclconf/go-cty v1.17.0 // indirect
503506
github.com/zclconf/go-cty-yaml v1.1.0 // indirect
504507
github.com/zitadel/logging v0.6.2 // indirect
505508
github.com/zitadel/schema v1.3.1 // indirect
@@ -555,24 +558,24 @@ require (
555558
gopkg.in/inf.v0 v0.9.1 // indirect
556559
gopkg.in/ini.v1 v1.67.0 // indirect
557560
gopkg.in/warnings.v0 v0.1.2 // indirect
558-
helm.sh/helm/v3 v3.18.5 // indirect
561+
helm.sh/helm/v3 v3.19.0 // indirect
559562
k8s.io/api v0.34.1 // indirect
560563
k8s.io/apiextensions-apiserver v0.34.1 // indirect
561564
k8s.io/apiserver v0.34.1 // indirect
562-
k8s.io/cli-runtime v0.33.3 // indirect
565+
k8s.io/cli-runtime v0.34.0 // indirect
563566
k8s.io/client-go v0.34.1 // indirect
564567
k8s.io/component-base v0.34.1 // indirect
565568
k8s.io/klog/v2 v2.130.1 // indirect
566569
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
567-
k8s.io/kubectl v0.33.3 // indirect
570+
k8s.io/kubectl v0.34.0 // indirect
568571
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
569572
modernc.org/libc v1.66.10 // indirect
570573
modernc.org/mathutil v1.7.1 // indirect
571574
modernc.org/memory v1.11.0 // indirect
572575
mvdan.cc/sh/v3 v3.11.0 // indirect
573576
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
574-
sigs.k8s.io/kustomize/api v0.19.0 // indirect
575-
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
577+
sigs.k8s.io/kustomize/api v0.20.1 // indirect
578+
sigs.k8s.io/kustomize/kyaml v0.20.1 // indirect
576579
sigs.k8s.io/randfill v1.0.0 // indirect
577580
sigs.k8s.io/release-utils v0.12.2 // indirect
578581
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect

0 commit comments

Comments
 (0)