Skip to content

Commit d6edba8

Browse files
committed
Update helm dependencies to bump oras-go
Signed-off-by: Jose R. Gonzalez <komish@flutes.dev>
1 parent a7a6bce commit d6edba8

3 files changed

Lines changed: 172 additions & 177 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/golang:1.25 as build
1+
FROM docker.io/golang:1.26 as build
22

33
WORKDIR /tmp/src
44

@@ -14,4 +14,4 @@ WORKDIR /app
1414

1515
ENV PATH "$PATH:/app"
1616

17-
ENTRYPOINT ["/app/chart-verifier"]
17+
ENTRYPOINT ["/app/chart-verifier"]

go.mod

Lines changed: 34 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/redhat-certification/chart-verifier
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
dario.cat/mergo v1.0.2
@@ -16,11 +16,11 @@ require (
1616
github.com/stretchr/testify v1.11.1
1717
golang.org/x/mod v0.37.0
1818
gopkg.in/yaml.v3 v3.0.1
19-
helm.sh/helm/v4 v4.1.4
20-
k8s.io/api v0.35.1
21-
k8s.io/apimachinery v0.35.1
22-
k8s.io/client-go v0.35.1
23-
k8s.io/kubectl v0.35.1
19+
helm.sh/helm/v4 v4.2.2
20+
k8s.io/api v0.36.1
21+
k8s.io/apimachinery v0.36.1
22+
k8s.io/client-go v0.36.1
23+
k8s.io/kubectl v0.36.1
2424
)
2525

2626
require (
@@ -29,23 +29,23 @@ require (
2929
github.com/BurntSushi/toml v1.6.0 // indirect
3030
github.com/MakeNowJust/heredoc v1.0.0 // indirect
3131
github.com/Masterminds/goutils v1.1.1 // indirect
32-
github.com/Masterminds/semver/v3 v3.4.0 // indirect
32+
github.com/Masterminds/semver/v3 v3.5.0 // indirect
3333
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
3434
github.com/Masterminds/squirrel v1.5.4 // indirect
35-
github.com/ProtonMail/go-crypto v1.3.0 // indirect
35+
github.com/ProtonMail/go-crypto v1.4.1 // indirect
3636
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3737
github.com/blang/semver/v4 v4.0.0 // indirect
3838
github.com/chai2010/gettext-go v1.0.2 // indirect
3939
github.com/cloudflare/circl v1.6.3 // indirect
4040
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
4141
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4242
github.com/dylibso/observe-sdk/go v0.0.0-20240819160327-2d926c5d788a // indirect
43-
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
43+
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
4444
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
4545
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
4646
github.com/extism/go-sdk v1.7.1 // indirect
47-
github.com/fatih/color v1.18.0 // indirect
48-
github.com/fluxcd/cli-utils v0.37.2-flux.1 // indirect
47+
github.com/fatih/color v1.19.0 // indirect
48+
github.com/fluxcd/cli-utils v1.2.1 // indirect
4949
github.com/fsnotify/fsnotify v1.9.0 // indirect
5050
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
5151
github.com/go-errors/errors v1.5.1 // indirect
@@ -60,7 +60,6 @@ require (
6060
github.com/google/btree v1.1.3 // indirect
6161
github.com/google/gnostic-models v0.7.0 // indirect
6262
github.com/gosuri/uitable v0.0.4 // indirect
63-
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
6463
github.com/hashicorp/errwrap v1.1.0 // indirect
6564
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6665
github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -73,13 +72,13 @@ require (
7372
github.com/json-iterator/go v1.1.12 // indirect
7473
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
7574
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
76-
github.com/lib/pq v1.10.9 // indirect
75+
github.com/lib/pq v1.12.3 // indirect
7776
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
7877
github.com/mailru/easyjson v0.9.0 // indirect
79-
github.com/mattn/go-colorable v0.1.13 // indirect
78+
github.com/mattn/go-colorable v0.1.14 // indirect
8079
github.com/mattn/go-isatty v0.0.20 // indirect
8180
github.com/mattn/go-runewidth v0.0.9 // indirect
82-
github.com/mattn/go-shellwords v1.0.12 // indirect
81+
github.com/mattn/go-shellwords v1.0.13 // indirect
8382
github.com/mitchellh/copystructure v1.2.0 // indirect
8483
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8584
github.com/mitchellh/reflectwalk v1.0.2 // indirect
@@ -104,38 +103,37 @@ require (
104103
github.com/spf13/pflag v1.0.10 // indirect
105104
github.com/subosito/gotenv v1.6.0 // indirect
106105
github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834 // indirect
107-
github.com/tetratelabs/wazero v1.11.0 // indirect
106+
github.com/tetratelabs/wazero v1.12.0 // indirect
108107
github.com/x448/float16 v0.8.4 // indirect
109108
github.com/xlab/treeprint v1.2.0 // indirect
110-
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
109+
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
111110
go.yaml.in/yaml/v2 v2.4.3 // indirect
112111
go.yaml.in/yaml/v3 v3.0.4 // indirect
113-
golang.org/x/crypto v0.51.0 // indirect
112+
golang.org/x/crypto v0.53.0 // indirect
114113
golang.org/x/net v0.55.0 // indirect
115-
golang.org/x/oauth2 v0.34.0 // indirect
116-
golang.org/x/sync v0.20.0 // indirect
117-
golang.org/x/sys v0.45.0 // indirect
118-
golang.org/x/term v0.43.0 // indirect
119-
golang.org/x/text v0.37.0 // indirect
120-
golang.org/x/time v0.12.0 // indirect
121-
google.golang.org/grpc v1.79.3 // indirect
122-
google.golang.org/protobuf v1.36.11 // indirect
114+
golang.org/x/oauth2 v0.36.0 // indirect
115+
golang.org/x/sync v0.21.0 // indirect
116+
golang.org/x/sys v0.46.0 // indirect
117+
golang.org/x/term v0.44.0 // indirect
118+
golang.org/x/text v0.38.0 // indirect
119+
golang.org/x/time v0.15.0 // indirect
120+
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect
123121
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
124122
gopkg.in/inf.v0 v0.9.1 // indirect
125123
gopkg.in/yaml.v2 v2.4.0 // indirect
126-
k8s.io/apiextensions-apiserver v0.35.1 // indirect
127-
k8s.io/apiserver v0.35.1 // indirect
128-
k8s.io/cli-runtime v0.35.1 // indirect
129-
k8s.io/component-base v0.35.1 // indirect
130-
k8s.io/klog/v2 v2.130.1 // indirect
131-
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
132-
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
133-
oras.land/oras-go/v2 v2.6.0 // indirect
134-
sigs.k8s.io/controller-runtime v0.23.1 // indirect
124+
k8s.io/apiextensions-apiserver v0.36.1 // indirect
125+
k8s.io/apiserver v0.36.1 // indirect
126+
k8s.io/cli-runtime v0.36.1 // indirect
127+
k8s.io/component-base v0.36.1 // indirect
128+
k8s.io/klog/v2 v2.140.0 // indirect
129+
k8s.io/kube-openapi v0.0.0-20260317180543-43fb72c5454a // indirect
130+
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2 // indirect
131+
oras.land/oras-go/v2 v2.6.1 // indirect
132+
sigs.k8s.io/controller-runtime v0.24.1 // indirect
135133
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
136134
sigs.k8s.io/kustomize/api v0.21.1 // indirect
137135
sigs.k8s.io/kustomize/kyaml v0.21.1 // indirect
138136
sigs.k8s.io/randfill v1.0.0 // indirect
139-
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
137+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2 // indirect
140138
sigs.k8s.io/yaml v1.6.0 // indirect
141139
)

0 commit comments

Comments
 (0)