Skip to content

Commit c185b80

Browse files
Bump helm.sh/helm/v3 from 3.17.3 to 3.18.5 (#10008)
* Bump helm.sh/helm/v3 from 3.17.3 to 3.18.5 Bumps [helm.sh/helm/v3](https://github.com/helm/helm) from 3.17.3 to 3.18.5. - [Release notes](https://github.com/helm/helm/releases) - [Commits](helm/helm@v3.17.3...v3.18.5) --- updated-dependencies: - dependency-name: helm.sh/helm/v3 dependency-version: 3.18.5 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Fix unit tests failures due to go vet formatting issues * Bump golang to 1.24 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Saurabh Parekh <sjparekh@amazon.com>
1 parent dda4879 commit c185b80

18 files changed

Lines changed: 461 additions & 403 deletions

File tree

.github/workflows/go-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: '1.23'
19+
go-version: '1.24'
2020
check-latest: true
2121
cache: true
2222
- name: Run go test with coverage

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: "1.23"
22+
go-version: "1.24"
2323
check-latest: true
2424
cache: true
2525
- name: golangci-lint

.github/workflows/vulnerability.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
with:
4242
check-latest: true
4343
repo-checkout: false
44-
go-version-input: '1.23'
44+
go-version-input: '1.24'
4545
- name: govulncheck for release module
4646
uses: golang/govulncheck-action@v1
4747
with:
4848
check-latest: true
4949
repo-checkout: false
5050
cache: false # cache will be already setup by previous step
5151
work-dir: release/cli
52-
go-version-input: '1.23'
52+
go-version-input: '1.24'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SHELL := /bin/bash
2020
ARTIFACTS_BUCKET?=my-s3-bucket
2121
GIT_VERSION?=$(shell git describe --tag)
2222
GIT_TAG?=$(shell git tag -l "v*.*.*" --sort -v:refname | head -1)
23-
GOLANG_VERSION?="1.23"
23+
GOLANG_VERSION?="1.24"
2424
GO_PATH ?= $(shell source ./scripts/common.sh && build::common::get_go_path $(GOLANG_VERSION))
2525
GO ?= $(GO_PATH)/go
2626
GO_TEST ?= $(GO) test

go.mod

Lines changed: 43 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/aws/eks-anywhere
22

3-
go 1.23.0
4-
5-
toolchain go1.23.8
3+
go 1.24.0
64

75
require (
86
github.com/Masterminds/sprig v2.22.0+incompatible
@@ -28,45 +26,45 @@ require (
2826
github.com/go-logr/zapr v1.3.0
2927
github.com/gocarina/gocsv v0.0.0-20220304222734-caabc5f00d30
3028
github.com/golang/mock v1.6.0
31-
github.com/google/go-cmp v0.6.0
29+
github.com/google/go-cmp v0.7.0
3230
github.com/google/go-github/v35 v35.3.0
3331
github.com/google/uuid v1.6.0
3432
github.com/nutanix-cloud-native/cluster-api-provider-nutanix v1.3.2
3533
github.com/nutanix-cloud-native/prism-go-client v0.3.4
3634
github.com/onsi/gomega v1.36.1
37-
github.com/opencontainers/image-spec v1.1.0
35+
github.com/opencontainers/image-spec v1.1.1
3836
github.com/pkg/errors v0.9.1
39-
github.com/spf13/cobra v1.8.1
40-
github.com/spf13/pflag v1.0.5
37+
github.com/spf13/cobra v1.9.1
38+
github.com/spf13/pflag v1.0.7
4139
github.com/spf13/viper v1.19.0
4240
github.com/stretchr/testify v1.10.0
4341
github.com/tinkerbell/tink v0.8.0
4442
github.com/vmware/govmomi v0.37.2
4543
go.uber.org/zap v1.27.0
46-
golang.org/x/crypto v0.36.0
44+
golang.org/x/crypto v0.40.0
4745
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
48-
golang.org/x/net v0.38.0
49-
golang.org/x/oauth2 v0.24.0
50-
golang.org/x/text v0.23.0
46+
golang.org/x/net v0.41.0
47+
golang.org/x/oauth2 v0.28.0
48+
golang.org/x/text v0.27.0
5149
gopkg.in/ini.v1 v1.67.0
5250
gopkg.in/yaml.v2 v2.4.0
5351
gopkg.in/yaml.v3 v3.0.1
54-
helm.sh/helm/v3 v3.17.3
55-
k8s.io/api v0.32.2
56-
k8s.io/apimachinery v0.32.2
57-
k8s.io/apiserver v0.32.2
58-
k8s.io/client-go v0.32.2
59-
k8s.io/component-base v0.32.2
52+
helm.sh/helm/v3 v3.18.5
53+
k8s.io/api v0.33.3
54+
k8s.io/apimachinery v0.33.3
55+
k8s.io/apiserver v0.33.3
56+
k8s.io/client-go v0.33.3
57+
k8s.io/component-base v0.33.3
6058
k8s.io/klog/v2 v2.130.1
6159
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
6260
oras.land/oras-go v1.2.5
63-
oras.land/oras-go/v2 v2.4.0
61+
oras.land/oras-go/v2 v2.6.0
6462
sigs.k8s.io/cluster-api v1.6.2
6563
sigs.k8s.io/cluster-api-provider-cloudstack v0.4.9-rc7
6664
sigs.k8s.io/cluster-api-provider-vsphere v1.9.2
6765
sigs.k8s.io/cluster-api/test v1.6.2
6866
sigs.k8s.io/controller-runtime v0.20.4
69-
sigs.k8s.io/yaml v1.4.0
67+
sigs.k8s.io/yaml v1.5.0
7068
)
7169

7270
require (
@@ -77,7 +75,10 @@ require (
7775
github.com/itchyny/timefmt-go v0.1.6 // indirect
7876
github.com/vektah/gqlparser/v2 v2.5.15 // indirect
7977
github.com/x448/float16 v0.8.4 // indirect
78+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
79+
go.yaml.in/yaml/v2 v2.4.2 // indirect
8080
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
81+
sigs.k8s.io/randfill v1.0.0 // indirect
8182
)
8283

8384
require (
@@ -111,13 +112,13 @@ require (
111112
github.com/cloudflare/circl v1.6.1 // indirect
112113
github.com/containerd/containerd v1.7.27 // indirect
113114
github.com/containerd/log v0.1.0 // indirect
114-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
115-
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
115+
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
116+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
116117
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
117118
github.com/distribution/reference v0.6.0 // indirect
118119
github.com/docker/distribution v2.8.3+incompatible // indirect
119120
github.com/docker/docker v25.0.6+incompatible // indirect
120-
github.com/docker/docker-credential-helpers v0.7.0 // indirect
121+
github.com/docker/docker-credential-helpers v0.8.2 // indirect
121122
github.com/docker/go-connections v0.5.0 // indirect
122123
github.com/docker/go-metrics v0.0.1 // indirect
123124
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
@@ -135,11 +136,9 @@ require (
135136
github.com/gogo/protobuf v1.3.2 // indirect
136137
github.com/golang-jwt/jwt/v5 v5.2.2
137138
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
138-
github.com/golang/protobuf v1.5.4 // indirect
139-
github.com/google/gnostic-models v0.6.8 // indirect
139+
github.com/google/gnostic-models v0.6.9 // indirect
140140
github.com/google/go-querystring v1.1.0 // indirect
141-
github.com/google/gofuzz v1.2.0 // indirect
142-
github.com/gorilla/mux v1.8.0 // indirect
141+
github.com/gorilla/mux v1.8.1 // indirect
143142
github.com/hashicorp/errwrap v1.1.0 // indirect
144143
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
145144
github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -155,7 +154,7 @@ require (
155154
github.com/josharian/intern v1.0.0 // indirect
156155
github.com/json-iterator/go v1.1.12 // indirect
157156
github.com/kevinburke/ssh_config v1.2.0 // indirect
158-
github.com/klauspost/compress v1.17.2 // indirect
157+
github.com/klauspost/compress v1.18.0 // indirect
159158
github.com/magiconair/properties v1.8.7 // indirect
160159
github.com/mailru/easyjson v0.7.7 // indirect
161160
github.com/mitchellh/copystructure v1.2.0 // indirect
@@ -169,9 +168,9 @@ require (
169168
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
170169
github.com/pjbgf/sha1cd v0.3.0 // indirect
171170
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
172-
github.com/prometheus/client_golang v1.19.1 // indirect
171+
github.com/prometheus/client_golang v1.22.0 // indirect
173172
github.com/prometheus/client_model v0.6.1 // indirect
174-
github.com/prometheus/common v0.55.0 // indirect
173+
github.com/prometheus/common v0.62.0 // indirect
175174
github.com/prometheus/procfs v0.15.1 // indirect
176175
github.com/russross/blackfriday/v2 v2.1.0 // indirect
177176
github.com/sagikazarmark/locafero v0.4.0 // indirect
@@ -186,28 +185,28 @@ require (
186185
github.com/stmcginnis/gofish v0.15.1-0.20231121142100-22a60a77be91 // indirect
187186
github.com/subosito/gotenv v1.6.0 // indirect
188187
github.com/xanzy/ssh-agent v0.3.3 // indirect
189-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
190-
go.opentelemetry.io/otel v1.28.0 // indirect
191-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
192-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
188+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
189+
go.opentelemetry.io/otel v1.33.0 // indirect
190+
go.opentelemetry.io/otel/metric v1.33.0 // indirect
191+
go.opentelemetry.io/otel/trace v1.33.0 // indirect
193192
go.uber.org/multierr v1.11.0 // indirect
194-
golang.org/x/mod v0.21.0 // indirect
195-
golang.org/x/sync v0.12.0
196-
golang.org/x/sys v0.31.0 // indirect
197-
golang.org/x/term v0.30.0 // indirect
198-
golang.org/x/time v0.7.0 // indirect
193+
golang.org/x/mod v0.25.0 // indirect
194+
golang.org/x/sync v0.16.0
195+
golang.org/x/sys v0.34.0 // indirect
196+
golang.org/x/term v0.33.0 // indirect
197+
golang.org/x/time v0.9.0 // indirect
199198
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
200-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240826202546-f6391c0de4c7 // indirect
201-
google.golang.org/grpc v1.65.1 // indirect
202-
google.golang.org/protobuf v1.35.2 // indirect
199+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect
200+
google.golang.org/grpc v1.68.1 // indirect
201+
google.golang.org/protobuf v1.36.5 // indirect
203202
gopkg.in/inf.v0 v0.9.1 // indirect
204203
gopkg.in/warnings.v0 v0.1.2 // indirect
205-
k8s.io/apiextensions-apiserver v0.32.2 // indirect
204+
k8s.io/apiextensions-apiserver v0.33.3 // indirect
206205
k8s.io/cluster-bootstrap v0.31.3 // indirect
207-
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
206+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
208207
k8s.io/kubelet v0.29.5
209208
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
210-
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
209+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
211210
)
212211

213212
replace (

0 commit comments

Comments
 (0)