-
Notifications
You must be signed in to change notification settings - Fork 758
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
Fix crypto package vulnerability #2183
Conversation
go.mod
Outdated
@@ -83,13 +83,11 @@ require ( | |||
github.com/go-openapi/jsonreference v0.19.3 // indirect | |||
github.com/go-openapi/spec v0.19.3 // indirect | |||
github.com/go-openapi/swag v0.19.5 // indirect | |||
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect |
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.
This needs to stay
go.mod
Outdated
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect |
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.
I believe this needs to stay as well. Good to check last PR for the link to that integration run
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.
Ah good catch. I kept it in go.sum file but not in this. Fixed
* Fix crypto package vulnerability Co-authored-by: Jay Deokar <jsdeokar@amazon.com>
What type of PR is this?
Bug
Which issue does this PR fix:
N/A
What does this PR do / Why do we need it:
Bumping up the version to address crypto package vulnerability.
If an issue # is not available please add repro steps and logs from IPAMD/CNI showing the issue:
N/A
Testing done on this change: N/A
Automation added to e2e:
N/A
Will this PR introduce any new dependencies?:
N/A
Will this break upgrades or downgrades. Has updating a running cluster been tested?:
N/A
Does this change require updates to the CNI daemonset config files to work?:
Does this PR introduce any user-facing change?:
N/A
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.