mirror of
https://github.com/containers/skopeo.git
synced 2025-10-21 10:53:32 +00:00
> go get github.com/containerd/containerd@latest > make vendor ... because 1.5.9 contains a vulnerability fix, and we want to silence scanners. NOTE: Skopeo DOES NOT use the vulnerable code that was fixed in containerd 1.5.9, so it is NOT vulnerable to GHSA-mvff-h3cj-wj9c . Signed-off-by: Miloslav Trmač <mitr@redhat.com>
27 lines
1.0 KiB
Modula-2
27 lines
1.0 KiB
Modula-2
module github.com/containers/skopeo
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/containerd/containerd v1.5.9 // indirect
|
|
github.com/containers/common v0.46.1-0.20211026130826-7abfd453c86f
|
|
github.com/containers/image/v5 v5.17.1-0.20211129144953-4f6d0b45be6c
|
|
github.com/containers/ocicrypt v1.1.2
|
|
github.com/containers/storage v1.37.0
|
|
github.com/docker/docker v20.10.12+incompatible
|
|
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0
|
|
github.com/opencontainers/image-spec v1.0.3-0.20211202193544-a5463b7f9c84
|
|
github.com/opencontainers/image-tools v1.0.0-rc3
|
|
github.com/opencontainers/runc v1.0.3 // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/russross/blackfriday v2.0.0+incompatible // indirect
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.3.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|