Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/itchyny/gojq v0.12.17
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.10.0
gopkg.in/yaml.v3 v3.0.1
go.yaml.in/yaml/v3 v3.0.3
helm.sh/helm/v3 v3.18.4
k8s.io/apimachinery v0.33.3
k8s.io/client-go v0.33.3
Expand Down Expand Up @@ -61,7 +61,6 @@ require (
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
github.com/xlab/treeprint v1.2.0 // indirect
go.yaml.in/yaml/v2 v2.4.2 // indirect
go.yaml.in/yaml/v3 v3.0.3 // indirect
golang.org/x/crypto v0.39.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/oauth2 v0.28.0 // indirect
Expand All @@ -73,6 +72,7 @@ require (
google.golang.org/protobuf v1.36.5 // indirect
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/api v0.33.3 // indirect
k8s.io/apiextensions-apiserver v0.33.2 // indirect
k8s.io/cli-runtime v0.33.2 // indirect
Expand Down
2 changes: 1 addition & 1 deletion internal/compiler/builtins.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/itchyny/gojq"
"github.com/pkg/errors"
"github.com/stackrox/helmtest/internal/logic"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

// Additional built-ins for gojq
Expand Down
2 changes: 1 addition & 1 deletion internal/schemas/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
openapi_v2 "github.com/google/gnostic-models/openapiv2"
"github.com/pkg/errors"
"github.com/stackrox/helmtest/internal/rox-imported/set"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
"helm.sh/helm/v3/pkg/chartutil"
k8sSchema "k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/kubectl/pkg/util/openapi"
Expand Down
2 changes: 1 addition & 1 deletion pkg/framework/spec_unmarshal.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/stackrox/helmtest/internal/parser"
yamlv3 "gopkg.in/yaml.v3"
yamlv3 "go.yaml.in/yaml/v3"
"sigs.k8s.io/yaml"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/framework/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"k8s.io/kubectl/pkg/util/openapi"

"github.com/pkg/errors"
yamlv3 "gopkg.in/yaml.v3"
yamlv3 "go.yaml.in/yaml/v3"
)

// unmarshalYamlFromFileStrict unmarshals the contents of filename into out, relying on gopkg.in/yaml.v3 semantics.
Expand Down