Skip to content

Commit 274a08f

Browse files
chore(deps): update all non-major dependencies
1 parent afd46da commit 274a08f

File tree

6 files changed

+152
-169
lines changed

6 files changed

+152
-169
lines changed

.github/workflows/e2e/package/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM registry.suse.com/bci/golang:1.23 AS helm
22
RUN zypper -n install git
3-
RUN git -C / clone --branch release-v3.9.0 --depth=1 https://github.com/rancher/helm
3+
RUN git -C / clone --branch release-v3.11.3 --depth=1 https://github.com/rancher/helm
44
RUN make -C /helm
55

66
FROM registry.suse.com/bci/golang:1.23

examples/helm-locker/helm-locker-chart-example/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ global:
1010

1111
kubectl:
1212
repository: rancher/kubectl
13-
tag: v1.25.16
13+
tag: v1.31.8
1414
pullPolicy: IfNotPresent
1515

1616
rbac:

examples/helm-project-operator/chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ debugLevel: 0
202202
cleanup:
203203
image:
204204
repository: rancher/shell
205-
tag: v0.1.19
205+
tag: v0.4.0
206206
pullPolicy: IfNotPresent
207207

208208
## Define which Nodes the Pods are scheduled on.

go.mod

Lines changed: 40 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
module github.com/rancher/prometheus-federator
22

3-
go 1.23.0
3+
go 1.23.4
44

5-
toolchain go1.23.4
5+
toolchain go1.24.2
66

77
require (
8-
github.com/caarlos0/env/v11 v11.1.0
8+
github.com/caarlos0/env/v11 v11.3.1
99
github.com/google/uuid v1.6.0
1010
github.com/hashicorp/go-multierror v1.1.1
11-
github.com/k3s-io/helm-controller v0.16.6
11+
github.com/k3s-io/helm-controller v0.16.10
1212
github.com/kralicky/kmatch v0.0.0-20241208031153-01f2c564e46f
1313
github.com/novln/docker-parser v1.0.0
14-
github.com/onsi/ginkgo/v2 v2.22.2
15-
github.com/onsi/gomega v1.36.2
16-
github.com/rancher/lasso v0.0.0-20250109193533-00757eec2dbd
17-
github.com/rancher/wrangler/v3 v3.2.0-rc.2
18-
github.com/samber/lo v1.47.0
14+
github.com/onsi/ginkgo/v2 v2.23.4
15+
github.com/onsi/gomega v1.37.0
16+
github.com/rancher/lasso v0.2.1
17+
github.com/rancher/wrangler/v3 v3.2.0
18+
github.com/samber/lo v1.50.0
1919
github.com/sirupsen/logrus v1.9.3
20-
github.com/spf13/cobra v1.8.1
21-
github.com/spf13/viper v1.10.0
20+
github.com/spf13/cobra v1.9.1
21+
github.com/spf13/viper v1.20.1
2222
github.com/stretchr/testify v1.10.0
23-
go.uber.org/mock v0.4.0
24-
golang.org/x/mod v0.22.0
25-
golang.org/x/text v0.21.0
23+
go.uber.org/mock v0.5.2
24+
golang.org/x/mod v0.24.0
25+
golang.org/x/text v0.24.0
2626
gopkg.in/yaml.v2 v2.4.0
2727
gopkg.in/yaml.v3 v3.0.1
28-
helm.sh/helm/v3 v3.15.3
28+
helm.sh/helm/v3 v3.17.3
2929
k8s.io/api v0.32.3
3030
k8s.io/apiextensions-apiserver v0.32.3
3131
k8s.io/apimachinery v0.32.3
@@ -36,16 +36,16 @@ require (
3636

3737
require (
3838
emperror.dev/errors v0.8.1 // indirect
39-
github.com/Masterminds/semver/v3 v3.2.1 // indirect
39+
github.com/Masterminds/semver/v3 v3.3.0 // indirect
4040
github.com/Masterminds/squirrel v1.5.4 // indirect
4141
github.com/beorn7/perks v1.0.1 // indirect
4242
github.com/cespare/xxhash/v2 v2.3.0 // indirect
43-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
43+
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
4444
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4545
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
46-
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
46+
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
4747
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
48-
github.com/fsnotify/fsnotify v1.7.0 // indirect
48+
github.com/fsnotify/fsnotify v1.8.0 // indirect
4949
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
5050
github.com/ghodss/yaml v1.0.0 // indirect
5151
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
@@ -54,60 +54,59 @@ require (
5454
github.com/go-openapi/jsonreference v0.21.0 // indirect
5555
github.com/go-openapi/swag v0.23.0 // indirect
5656
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
57+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
5758
github.com/gogo/protobuf v1.3.2 // indirect
5859
github.com/golang/protobuf v1.5.4 // indirect
5960
github.com/google/gnostic-models v0.6.9 // indirect
60-
github.com/google/go-cmp v0.6.0 // indirect
61+
github.com/google/go-cmp v0.7.0 // indirect
6162
github.com/google/gofuzz v1.2.0 // indirect
62-
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
63+
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
6364
github.com/hashicorp/errwrap v1.1.0 // indirect
64-
github.com/hashicorp/hcl v1.0.0 // indirect
6565
github.com/inconshreveable/mousetrap v1.1.0 // indirect
66-
github.com/jmoiron/sqlx v1.3.5 // indirect
66+
github.com/jmoiron/sqlx v1.4.0 // indirect
6767
github.com/josharian/intern v1.0.0 // indirect
6868
github.com/json-iterator/go v1.1.12 // indirect
6969
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
7070
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
7171
github.com/lib/pq v1.10.9 // indirect
72-
github.com/magiconair/properties v1.8.5 // indirect
7372
github.com/mailru/easyjson v0.9.0 // indirect
7473
github.com/mitchellh/copystructure v1.2.0 // indirect
75-
github.com/mitchellh/mapstructure v1.4.3 // indirect
7674
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7775
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7876
github.com/modern-go/reflect2 v1.0.2 // indirect
7977
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
80-
github.com/pelletier/go-toml v1.9.4 // indirect
78+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
8179
github.com/pkg/errors v0.9.1 // indirect
8280
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
8381
github.com/prometheus/client_golang v1.20.5 // indirect
8482
github.com/prometheus/client_model v0.6.1 // indirect
8583
github.com/prometheus/common v0.61.0 // indirect
8684
github.com/prometheus/procfs v0.15.1 // indirect
87-
github.com/rubenv/sql-migrate v1.5.2 // indirect
88-
github.com/spf13/afero v1.6.0 // indirect
89-
github.com/spf13/cast v1.5.0 // indirect
90-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
91-
github.com/spf13/pflag v1.0.5 // indirect
92-
github.com/subosito/gotenv v1.2.0 // indirect
85+
github.com/rubenv/sql-migrate v1.7.1 // indirect
86+
github.com/sagikazarmark/locafero v0.7.0 // indirect
87+
github.com/sourcegraph/conc v0.3.0 // indirect
88+
github.com/spf13/afero v1.12.0 // indirect
89+
github.com/spf13/cast v1.7.1 // indirect
90+
github.com/spf13/pflag v1.0.6 // indirect
91+
github.com/subosito/gotenv v1.6.0 // indirect
9392
github.com/x448/float16 v0.8.4 // indirect
9493
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
9594
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
9695
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
96+
go.uber.org/automaxprocs v1.6.0 // indirect
9797
go.uber.org/multierr v1.11.0 // indirect
98-
golang.org/x/net v0.33.0 // indirect
99-
golang.org/x/oauth2 v0.24.0 // indirect
100-
golang.org/x/sync v0.10.0 // indirect
101-
golang.org/x/sys v0.28.0 // indirect
102-
golang.org/x/term v0.27.0 // indirect
98+
golang.org/x/net v0.37.0 // indirect
99+
golang.org/x/oauth2 v0.25.0 // indirect
100+
golang.org/x/sync v0.13.0 // indirect
101+
golang.org/x/sys v0.32.0 // indirect
102+
golang.org/x/term v0.30.0 // indirect
103103
golang.org/x/time v0.8.0 // indirect
104-
golang.org/x/tools v0.28.0 // indirect
105-
google.golang.org/protobuf v1.36.1 // indirect
104+
golang.org/x/tools v0.31.0 // indirect
105+
google.golang.org/protobuf v1.36.5 // indirect
106106
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
107107
gopkg.in/inf.v0 v0.9.1 // indirect
108-
gopkg.in/ini.v1 v1.66.2 // indirect
109108
k8s.io/code-generator v0.32.3 // indirect
110-
k8s.io/gengo v0.0.0-20240911193312-2b36238f13e9 // indirect
109+
k8s.io/gengo v0.0.0-20250130153323-76c5745d3511 // indirect
111110
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect
112111
k8s.io/klog/v2 v2.130.1 // indirect
113112
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect

0 commit comments

Comments
 (0)