-
Notifications
You must be signed in to change notification settings - Fork 180
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
Updated oras to use updated containerd with artifacts-spec v1 #305
Conversation
Signed-off-by: Sajay Antony <sajaya@microsoft.com>
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.
LGTM with suggestions
@@ -19,15 +18,16 @@ require ( | |||
github.com/docker/docker-credential-helpers v0.6.3 // indirect | |||
github.com/docker/go-connections v0.4.0 // indirect | |||
github.com/morikuni/aec v1.0.0 // indirect | |||
github.com/opencontainers/artifacts v0.0.0-20210209205009-a282023000bd | |||
github.com/opencontainers/artifacts v0.0.0-20210209205009-a282023000bd // 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.
We can remove this line as github.com/opencontainers/artifacts
is used nowhere.
@@ -386,6 +386,7 @@ github.com/onsi/gomega v0.0.0-20151007035656-2152b45fa28a/go.mod h1:C1qb7wdrVGGV | |||
github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= | |||
github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= | |||
github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= | |||
github.com/opencontainers/artifacts v0.0.0-20210209205009-a282023000bd/go.mod h1:SD8DjsrkV/11lBKhbcjodFNeLmkZVCvDYPoXKZeGH5Q= |
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.
need to run go mod tidy
to clean up go.sum
.
} | ||
return descs, nil | ||
return desc, nil | ||
|
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.
nit: remove empty line
…roject#305) Signed-off-by: Sajay Antony <sajaya@microsoft.com>
Signed-off-by: Sajay Antony sajaya@microsoft.com