Skip to content

Commit d739cca

Browse files
[release/v1.10] Bump helm.sh/helm/v3 from 3.17.3 to 3.18.4 (#3752)
* Bump helm.sh/helm/v3 from 3.17.3 to 3.18.4 (#3744) * Bump helm.sh/helm/v3 from 3.17.3 to 3.18.4 Bumps [helm.sh/helm/v3](https://github.com/helm/helm) from 3.17.3 to 3.18.4. - [Release notes](https://github.com/helm/helm/releases) - [Commits](helm/helm@v3.17.3...v3.18.4) --- updated-dependencies: - dependency-name: helm.sh/helm/v3 dependency-version: 3.18.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix the linter Signed-off-by: Artiom Diomin <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Artiom Diomin <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Artiom Diomin <[email protected]> Signed-off-by: Artiom Diomin <[email protected]> * Align go build image Signed-off-by: Artiom Diomin <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Artiom Diomin <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c0437af commit d739cca

File tree

12 files changed

+458
-436
lines changed

12 files changed

+458
-436
lines changed

.prow/postsubmits.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ postsubmits:
3838
containers:
3939
# This must match the go version used for building, else go will rightfully
4040
# not use the cache
41-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
41+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
4242
command:
4343
- ./hack/ci/upload-gocache.sh
4444
resources:
@@ -57,7 +57,7 @@ postsubmits:
5757
containers:
5858
# This must match the go version used for building, else go will rightfully
5959
# not use the cache
60-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
60+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
6161
command:
6262
- ./hack/ci/upload-gocache.sh
6363
env:

.prow/verify.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ presubmits:
2424
preset-goproxy: "true"
2525
spec:
2626
containers:
27-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
27+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
2828
command:
2929
- make
3030
args:
@@ -45,7 +45,7 @@ presubmits:
4545
preset-goproxy: "true"
4646
spec:
4747
containers:
48-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
48+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
4949
command:
5050
- make
5151
args:
@@ -65,7 +65,7 @@ presubmits:
6565
preset-goproxy: "true"
6666
spec:
6767
containers:
68-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
68+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
6969
command:
7070
- make
7171
args:
@@ -85,7 +85,7 @@ presubmits:
8585
preset-goproxy: "true"
8686
spec:
8787
containers:
88-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
88+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
8989
command:
9090
- make
9191
args:
@@ -105,7 +105,7 @@ presubmits:
105105
preset-goproxy: "true"
106106
spec:
107107
containers:
108-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
108+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
109109
command:
110110
- make
111111
args:
@@ -125,7 +125,7 @@ presubmits:
125125
preset-goproxy: "true"
126126
spec:
127127
containers:
128-
- image: quay.io/kubermatic/build:go-1.23-node-20-6
128+
- image: quay.io/kubermatic/build:go-1.24-node-20-0
129129
command:
130130
- make
131131
args:
@@ -145,7 +145,7 @@ presubmits:
145145
preset-docker-mirror: "true"
146146
spec:
147147
containers:
148-
- image: quay.io/kubermatic/build:go-1.23-node-20-kind-0.25-6
148+
- image: quay.io/kubermatic/build:go-1.24-node-20-kind-0.27-6
149149
command:
150150
- /bin/bash
151151
- -c

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM docker.io/golang:1.23.0 as builder
15+
FROM docker.io/golang:1.24.4 as builder
1616

1717
ARG GOPROXY=
1818
ENV GOPROXY=$GOPROXY

go.mod

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module k8c.io/kubeone
22

3-
go 1.23.0
3+
go 1.24
4+
5+
toolchain go1.24.4
46

57
require (
68
dario.cat/mergo v1.0.1
@@ -14,23 +16,24 @@ require (
1416
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be
1517
github.com/distribution/reference v0.6.0
1618
github.com/dominodatalab/os-release v0.0.0-20190522011736-bcdb4a3e3c2f
17-
github.com/go-logr/logr v1.4.2
18-
github.com/google/go-cmp v0.6.0
19+
github.com/go-logr/logr v1.4.3
20+
github.com/google/go-cmp v0.7.0
21+
github.com/google/go-containerregistry v0.20.6
1922
github.com/google/go-github/v65 v65.0.0
2023
github.com/iancoleman/orderedmap v0.3.0
2124
github.com/koron-go/prefixw v1.0.0
2225
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
2326
github.com/pkg/errors v0.9.1
2427
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
2528
github.com/sirupsen/logrus v1.9.3
26-
github.com/spf13/cobra v1.8.1
27-
github.com/spf13/pflag v1.0.5
29+
github.com/spf13/cobra v1.9.1
30+
github.com/spf13/pflag v1.0.6
2831
go.etcd.io/etcd/client/v3 v3.5.16
2932
go.uber.org/multierr v1.11.0
30-
golang.org/x/crypto v0.36.0
31-
golang.org/x/term v0.30.0
32-
golang.org/x/text v0.23.0
33-
golang.org/x/tools v0.26.0
33+
golang.org/x/crypto v0.39.0
34+
golang.org/x/term v0.32.0
35+
golang.org/x/text v0.26.0
36+
golang.org/x/tools v0.34.0
3437
google.golang.org/grpc v1.67.0
3538
gopkg.in/yaml.v2 v2.4.0
3639
helm.sh/helm/v3 v3.17.3
@@ -65,26 +68,27 @@ require (
6568
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6669
github.com/chai2010/gettext-go v1.0.2 // indirect
6770
github.com/containerd/containerd v1.7.27 // indirect
68-
github.com/containerd/errdefs v0.3.0 // indirect
71+
github.com/containerd/errdefs v1.0.0 // indirect
6972
github.com/containerd/log v0.1.0 // indirect
7073
github.com/containerd/platforms v0.2.1 // indirect
74+
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
7175
github.com/coreos/go-semver v0.3.1 // indirect
7276
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
73-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
77+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
7478
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
7579
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
7680
github.com/distribution/distribution/v3 v3.0.0-20231026153941-6c694cbcf607 // indirect
77-
github.com/docker/cli v26.1.4+incompatible // indirect
81+
github.com/docker/cli v28.2.2+incompatible // indirect
7882
github.com/docker/distribution v2.8.3+incompatible // indirect
79-
github.com/docker/docker v26.1.5+incompatible // indirect
80-
github.com/docker/docker-credential-helpers v0.7.0 // indirect
83+
github.com/docker/docker v28.2.2+incompatible // indirect
84+
github.com/docker/docker-credential-helpers v0.9.3 // indirect
8185
github.com/docker/go-connections v0.5.0 // indirect
8286
github.com/docker/go-metrics v0.0.1 // indirect
8387
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
8488
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
8589
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
8690
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
87-
github.com/fatih/color v1.13.0 // indirect
91+
github.com/fatih/color v1.15.0 // indirect
8892
github.com/felixge/httpsnoop v1.0.4 // indirect
8993
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
9094
github.com/go-errors/errors v1.4.2 // indirect
@@ -114,7 +118,7 @@ require (
114118
github.com/josharian/intern v1.0.0 // indirect
115119
github.com/json-iterator/go v1.1.12 // indirect
116120
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
117-
github.com/klauspost/compress v1.17.9 // indirect
121+
github.com/klauspost/compress v1.18.0 // indirect
118122
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
119123
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
120124
github.com/lib/pq v1.10.9 // indirect
@@ -124,6 +128,7 @@ require (
124128
github.com/mattn/go-runewidth v0.0.9 // indirect
125129
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
126130
github.com/mitchellh/copystructure v1.2.0 // indirect
131+
github.com/mitchellh/go-homedir v1.1.0 // indirect
127132
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
128133
github.com/mitchellh/reflectwalk v1.0.2 // indirect
129134
github.com/moby/locker v1.0.1 // indirect
@@ -135,7 +140,7 @@ require (
135140
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
136141
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
137142
github.com/opencontainers/go-digest v1.0.0 // indirect
138-
github.com/opencontainers/image-spec v1.1.0 // indirect
143+
github.com/opencontainers/image-spec v1.1.1 // indirect
139144
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
140145
github.com/prometheus/client_golang v1.20.3 // indirect
141146
github.com/prometheus/client_model v0.6.1 // indirect
@@ -145,27 +150,29 @@ require (
145150
github.com/russross/blackfriday/v2 v2.1.0 // indirect
146151
github.com/shopspring/decimal v1.4.0 // indirect
147152
github.com/spf13/cast v1.7.0 // indirect
153+
github.com/vbatts/tar-split v0.12.1 // indirect
148154
github.com/x448/float16 v0.8.4 // indirect
149155
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
150156
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
151157
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
152158
github.com/xlab/treeprint v1.2.0 // indirect
153159
go.etcd.io/etcd/api/v3 v3.5.16 // indirect
154160
go.etcd.io/etcd/client/pkg/v3 v3.5.16 // indirect
155-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 // indirect
156-
go.opentelemetry.io/otel v1.30.0 // indirect
157-
go.opentelemetry.io/otel/metric v1.30.0 // indirect
158-
go.opentelemetry.io/otel/trace v1.30.0 // indirect
161+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
162+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
163+
go.opentelemetry.io/otel v1.36.0 // indirect
164+
go.opentelemetry.io/otel/metric v1.36.0 // indirect
165+
go.opentelemetry.io/otel/trace v1.36.0 // indirect
159166
go.uber.org/zap v1.27.0 // indirect
160-
golang.org/x/mod v0.21.0 // indirect
161-
golang.org/x/net v0.37.0 // indirect
162-
golang.org/x/oauth2 v0.23.0 // indirect
163-
golang.org/x/sync v0.12.0 // indirect
164-
golang.org/x/sys v0.31.0 // indirect
167+
golang.org/x/mod v0.25.0 // indirect
168+
golang.org/x/net v0.41.0 // indirect
169+
golang.org/x/oauth2 v0.30.0 // indirect
170+
golang.org/x/sync v0.15.0 // indirect
171+
golang.org/x/sys v0.33.0 // indirect
165172
golang.org/x/time v0.7.0 // indirect
166173
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
167174
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
168-
google.golang.org/protobuf v1.35.2 // indirect
175+
google.golang.org/protobuf v1.36.3 // indirect
169176
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
170177
gopkg.in/inf.v0 v0.9.1 // indirect
171178
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)