Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.

Commit fc8d6e3

Browse files
authored
feat: Include api version (#4)
* chore: Upgrade dependencies * feat: Add apiVersion to scan upload data
1 parent 00fb063 commit fc8d6e3

File tree

3 files changed

+52
-55
lines changed

3 files changed

+52
-55
lines changed

go.mod

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ go 1.21
55
require (
66
github.com/aquasecurity/trivy-operator v0.18.5
77
github.com/bluele/gcache v0.0.2
8-
github.com/bombsimon/logrusr/v4 v4.0.0
9-
github.com/bxcodec/httpcache v1.0.0-beta.3
8+
github.com/bombsimon/logrusr/v4 v4.1.0
9+
github.com/bxcodec/httpcache v1.0.0
1010
github.com/openclarity/kubeclarity/shared v0.0.0-20240111133845-5f6b41116110
1111
github.com/sirupsen/logrus v1.9.3
1212
github.com/spf13/cobra v1.8.0
13-
gopkg.in/go-jose/go-jose.v2 v2.6.1
14-
k8s.io/apimachinery v0.29.1
13+
gopkg.in/go-jose/go-jose.v2 v2.6.3
14+
k8s.io/apimachinery v0.29.2
15+
)
16+
17+
require (
18+
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
19+
github.com/go-redis/redis/v8 v8.11.5 // indirect
1520
)
1621

1722
require (
@@ -82,7 +87,7 @@ require (
8287
github.com/beorn7/perks v1.0.1 // indirect
8388
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
8489
github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect
85-
github.com/bxcodec/gotcha v1.0.0-beta.8 // indirect
90+
github.com/bxcodec/gotcha v1.0.0 // indirect
8691
github.com/caarlos0/env/v6 v6.10.1 // indirect
8792
github.com/cespare/xxhash/v2 v2.2.0 // indirect
8893
github.com/chai2010/gettext-go v1.0.2 // indirect
@@ -198,7 +203,6 @@ require (
198203
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
199204
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
200205
github.com/olekukonko/tablewriter v0.0.5 // indirect
201-
github.com/onsi/ginkgo v1.16.5 // indirect
202206
github.com/open-policy-agent/opa v0.58.0 // indirect
203207
github.com/opencontainers/go-digest v1.0.0 // indirect
204208
github.com/opencontainers/image-spec v1.1.0-rc6 // indirect
@@ -265,14 +269,14 @@ require (
265269
go.starlark.net v0.0.0-20231016134836-22325403fcb3 // indirect
266270
go.uber.org/multierr v1.11.0
267271
go.uber.org/zap v1.26.0 // indirect
268-
golang.org/x/crypto v0.18.0 // indirect
272+
golang.org/x/crypto v0.21.0 // indirect
269273
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
270274
golang.org/x/mod v0.14.0 // indirect
271-
golang.org/x/net v0.20.0 // indirect
275+
golang.org/x/net v0.22.0 // indirect
272276
golang.org/x/oauth2 v0.13.0 // indirect
273277
golang.org/x/sync v0.6.0 // indirect
274-
golang.org/x/sys v0.16.0 // indirect
275-
golang.org/x/term v0.16.0 // indirect
278+
golang.org/x/sys v0.18.0 // indirect
279+
golang.org/x/term v0.18.0 // indirect
276280
golang.org/x/text v0.14.0 // indirect
277281
golang.org/x/time v0.5.0 // indirect
278282
golang.org/x/tools v0.16.1 // indirect

0 commit comments

Comments
 (0)