File tree Expand file tree Collapse file tree 7 files changed +6
-9
lines changed Expand file tree Collapse file tree 7 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,11 @@ require (
19
19
github.com/go-git/go-git/v5 v5.13.1
20
20
github.com/google/go-cmp v0.6.0
21
21
github.com/google/go-github/v41 v41.0.0
22
- github.com/hashicorp/go-version v1.7.0
23
22
github.com/lmittmann/tint v1.0.7
24
23
github.com/stretchr/testify v1.10.0
25
24
github.com/urfave/cli v1.22.16
26
25
golang.org/x/exp v0.0.0-20241204233417-43b7b7cde48d
27
26
golang.org/x/oauth2 v0.25.0
28
- gopkg.in/yaml.v2 v2.4.0
29
27
gopkg.in/yaml.v3 v3.0.1
30
28
helm.sh/helm/v3 v3.16.3
31
29
sigs.k8s.io/yaml v1.4.0
@@ -187,6 +185,7 @@ require (
187
185
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
188
186
gopkg.in/inf.v0 v0.9.1 // indirect
189
187
gopkg.in/warnings.v0 v0.1.2 // indirect
188
+ gopkg.in/yaml.v2 v2.4.0 // indirect
190
189
gotest.tools/v3 v3.5.1 // indirect
191
190
k8s.io/api v0.31.3 // indirect
192
191
k8s.io/apiextensions-apiserver v0.31.3 // indirect
Original file line number Diff line number Diff line change @@ -213,8 +213,6 @@ github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY
213
213
github.com/hashicorp/errwrap v1.1.0 /go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4 =
214
214
github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo =
215
215
github.com/hashicorp/go-multierror v1.1.1 /go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM =
216
- github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKeRZfjY =
217
- github.com/hashicorp/go-version v1.7.0 /go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA =
218
216
github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc =
219
217
github.com/hashicorp/golang-lru/arc/v2 v2.0.5 h1:l2zaLDubNhW4XO3LnliVj0GXO3+/CGNJAg1dcN2Fpfw =
220
218
github.com/hashicorp/golang-lru/arc/v2 v2.0.5 /go.mod h1:ny6zBSQZi2JxIeYcv7kt2sH2PXJtirBN7RDhRpxPkxU =
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
28
28
"github.com/rancher/charts-build-scripts/pkg/validate"
29
29
"github.com/rancher/charts-build-scripts/pkg/zip"
30
30
"github.com/urfave/cli"
31
- "gopkg.in/yaml.v2 "
31
+ "gopkg.in/yaml.v3 "
32
32
)
33
33
34
34
const (
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
14
14
"github.com/rancher/charts-build-scripts/pkg/filesystem"
15
15
"github.com/rancher/charts-build-scripts/pkg/logger"
16
16
"github.com/rancher/charts-build-scripts/pkg/path"
17
- "gopkg.in/yaml.v2 "
17
+ "gopkg.in/yaml.v3 "
18
18
)
19
19
20
20
// ValidateInstallCRDContentsFmt is the format for the contents of ChartValidateInstallCRDFile
Original file line number Diff line number Diff line change 7
7
8
8
"github.com/go-git/go-billy/v5"
9
9
"github.com/rancher/charts-build-scripts/pkg/filesystem"
10
- "gopkg.in/yaml.v2 "
10
+ "gopkg.in/yaml.v3 "
11
11
)
12
12
13
13
// PackageOptions represent the options presented to users to be able to configure the way a package is built using these scripts
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
13
13
"github.com/go-git/go-billy/v5"
14
14
"github.com/rancher/charts-build-scripts/pkg/filesystem"
15
15
"github.com/rancher/charts-build-scripts/pkg/logger"
16
- "gopkg.in/yaml.v2 "
16
+ "gopkg.in/yaml.v3 "
17
17
)
18
18
19
19
// ValidateOptions specify an upstream GitHub repository you would like to validate against
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
17
17
"github.com/rancher/charts-build-scripts/pkg/logger"
18
18
"github.com/rancher/charts-build-scripts/pkg/path"
19
19
"golang.org/x/exp/slices"
20
- "gopkg.in/yaml.v2 "
20
+ "gopkg.in/yaml.v3 "
21
21
)
22
22
23
23
// SyncEntry represents a single entry in the regsync.yaml file
You can’t perform that action at this time.
0 commit comments