Skip to content

Commit cf8c08b

Browse files
chore(deps): bump helm.sh/helm/v3 from 3.15.4 to 3.16.1 in /examples/sdk/helm-template in the security group (#1614)
chore(deps): bump helm.sh/helm/v3 Bumps the security group in /examples/sdk/helm-template with 1 update: [helm.sh/helm/v3](https://github.com/helm/helm). Updates `helm.sh/helm/v3` from 3.15.4 to 3.16.1 - [Release notes](https://github.com/helm/helm/releases) - [Commits](helm/helm@v3.15.4...v3.16.1) --- updated-dependencies: - dependency-name: helm.sh/helm/v3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: security ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent aea4f7c commit cf8c08b

File tree

2 files changed

+77
-101
lines changed

2 files changed

+77
-101
lines changed

examples/sdk/helm-template/go.mod

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module helm-template
22

33
go 1.22.3
4-
toolchain go1.22.5
4+
toolchain go1.22.7
55

66
// Always use the local version of troubleshoot so as to build using
77
// the latest version of the library. This will ensure the example
@@ -10,18 +10,20 @@ replace github.com/replicatedhq/troubleshoot v0.0.0 => ../../../
1010

1111
require (
1212
github.com/replicatedhq/troubleshoot v0.0.0
13-
helm.sh/helm/v3 v3.15.4
13+
helm.sh/helm/v3 v3.16.1
1414
sigs.k8s.io/yaml v1.4.0
1515
)
1616

1717
require (
18+
dario.cat/mergo v1.0.1 // indirect
1819
github.com/BurntSushi/toml v1.4.0 // indirect
1920
github.com/Masterminds/goutils v1.1.1 // indirect
20-
github.com/Masterminds/semver/v3 v3.2.1 // indirect
21-
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
21+
github.com/Masterminds/semver/v3 v3.3.0 // indirect
22+
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
2223
github.com/cyphar/filepath-securejoin v0.3.1 // indirect
2324
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2425
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
26+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2527
github.com/go-logr/logr v1.4.2 // indirect
2628
github.com/go-openapi/jsonpointer v0.21.0 // indirect
2729
github.com/go-openapi/jsonreference v0.21.0 // indirect
@@ -30,10 +32,10 @@ require (
3032
github.com/gogo/protobuf v1.3.2 // indirect
3133
github.com/golang/protobuf v1.5.4 // indirect
3234
github.com/google/gnostic-models v0.6.8 // indirect
35+
github.com/google/go-cmp v0.6.0 // indirect
3336
github.com/google/gofuzz v1.2.0 // indirect
3437
github.com/google/uuid v1.6.0 // indirect
35-
github.com/huandu/xstrings v1.4.0 // indirect
36-
github.com/imdario/mergo v0.3.15 // indirect
38+
github.com/huandu/xstrings v1.5.0 // indirect
3739
github.com/josharian/intern v1.0.0 // indirect
3840
github.com/json-iterator/go v1.1.12 // indirect
3941
github.com/mailru/easyjson v0.7.7 // indirect
@@ -43,30 +45,31 @@ require (
4345
github.com/modern-go/reflect2 v1.0.2 // indirect
4446
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4547
github.com/pkg/errors v0.9.1 // indirect
46-
github.com/shopspring/decimal v1.3.1 // indirect
47-
github.com/spf13/cast v1.6.0 // indirect
48+
github.com/shopspring/decimal v1.4.0 // indirect
49+
github.com/spf13/cast v1.7.0 // indirect
50+
github.com/x448/float16 v0.8.4 // indirect
4851
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4952
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
5053
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
51-
golang.org/x/crypto v0.26.0 // indirect
52-
golang.org/x/net v0.28.0 // indirect
54+
golang.org/x/crypto v0.27.0 // indirect
55+
golang.org/x/net v0.29.0 // indirect
5356
golang.org/x/oauth2 v0.22.0 // indirect
54-
golang.org/x/sys v0.24.0 // indirect
55-
golang.org/x/term v0.23.0 // indirect
56-
golang.org/x/text v0.17.0 // indirect
57+
golang.org/x/sys v0.25.0 // indirect
58+
golang.org/x/term v0.24.0 // indirect
59+
golang.org/x/text v0.18.0 // indirect
5760
golang.org/x/time v0.5.0 // indirect
58-
google.golang.org/protobuf v1.33.0 // indirect
61+
google.golang.org/protobuf v1.34.2 // indirect
5962
gopkg.in/inf.v0 v0.9.1 // indirect
6063
gopkg.in/yaml.v2 v2.4.0 // indirect
6164
gopkg.in/yaml.v3 v3.0.1 // indirect
62-
k8s.io/api v0.30.3 // indirect
63-
k8s.io/apiextensions-apiserver v0.30.3 // indirect
64-
k8s.io/apimachinery v0.30.3 // indirect
65-
k8s.io/client-go v0.30.3 // indirect
65+
k8s.io/api v0.31.0 // indirect
66+
k8s.io/apiextensions-apiserver v0.31.0 // indirect
67+
k8s.io/apimachinery v0.31.0 // indirect
68+
k8s.io/client-go v0.31.0 // indirect
6669
k8s.io/klog/v2 v2.130.1 // indirect
6770
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
68-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
69-
sigs.k8s.io/controller-runtime v0.18.5 // indirect
71+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
72+
sigs.k8s.io/controller-runtime v0.19.0 // indirect
7073
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7174
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
7275
)

0 commit comments

Comments
 (0)