-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Go dependency updates #1632
Go dependency updates #1632
Conversation
pkg/preflight/builtin_test.go
Outdated
@@ -10,7 +10,7 @@ import ( | |||
"github.com/replicatedhq/kurl/pkg/installer" | |||
"github.com/stretchr/testify/assert" | |||
"github.com/stretchr/testify/require" | |||
yaml "gopkg.in/yaml.v3" | |||
yaml "gopkg.in/yaml.v2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the downgrade?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ooh because it was the only v3 usage, ok
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
had to add it back anyway. unmarshal failed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, but I want to see this in testgrid before we release just in case the yaml library version change breaks things
Damn, builds are failing. I ran it locally and it worked. Ill have to see what is the difference. |
@@ -16,7 +16,7 @@ import ( | |||
kurlscheme "github.com/replicatedhq/kurl/kurlkinds/client/kurlclientset/scheme" | |||
kurlv1beta1 "github.com/replicatedhq/kurl/kurlkinds/pkg/apis/cluster/v1beta1" | |||
kurlversion "github.com/replicatedhq/kurl/pkg/version" | |||
"gopkg.in/yaml.v1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@areed is there any reason this is using v1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not that I'm aware of
No description provided.