File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ require (
26
26
github.com/urfave/cli v1.22.16
27
27
golang.org/x/exp v0.0.0-20241204233417-43b7b7cde48d
28
28
golang.org/x/oauth2 v0.30.0
29
- gopkg.in/yaml.v2 v2.4.0
30
29
gopkg.in/yaml.v3 v3.0.1
31
30
helm.sh/helm/v3 v3.16.3
32
31
sigs.k8s.io/release-utils v0.11.1
@@ -232,6 +231,7 @@ require (
232
231
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
233
232
gopkg.in/inf.v0 v0.9.1 // indirect
234
233
gopkg.in/warnings.v0 v0.1.2 // indirect
234
+ gopkg.in/yaml.v2 v2.4.0 // indirect
235
235
gotest.tools/v3 v3.5.1 // indirect
236
236
k8s.io/api v0.31.3 // indirect
237
237
k8s.io/apiextensions-apiserver v0.31.3 // indirect
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
"github.com/rancher/charts-build-scripts/pkg/validate"
28
28
"github.com/rancher/charts-build-scripts/pkg/zip"
29
29
"github.com/urfave/cli"
30
- "gopkg.in/yaml.v2 "
30
+ "gopkg.in/yaml.v3 "
31
31
)
32
32
33
33
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 9
9
"strings"
10
10
11
11
"github.com/rancher/charts-build-scripts/pkg/logger"
12
- yamlV2 "gopkg.in/yaml.v2 "
12
+ yamlV2 "gopkg.in/yaml.v3 "
13
13
yamlV3 "gopkg.in/yaml.v3"
14
14
)
15
15
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
You can’t perform that action at this time.
0 commit comments