File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,21 +23,25 @@ pushd "${SOCI_SNAPSHOTTER_PROJECT_ROOT}"
2323
2424# skip k8s deps since they use the latest go version/features that may not be in the go version soci uses
2525# skip grpc because it's not compatible with containerd 1.7
26+ # skip runtime-spec until this issue is resolved: https://github.com/containerd/containerd/issues/12493
2627# Also ignored in /dependabot.yml
2728# shellcheck disable=SC2046
2829go get $( go list -m -f ' {{if not (or .Indirect .Main)}}{{.Path}}{{end}}' all | \
2930 grep -v " ^google.golang.org/grpc" | \
31+ grep -v " ^github.com/opencontainers/runtime-spec" | \
3032 grep -v " ^k8s.io/" )
3133make tidy
3234
3335pushd ./cmd
3436# skip k8s deps and soci-snapshotter itself
3537# skip grpc because it's not compatible with containerd 1.7
38+ # skip runtime-spec until this issue is resolved: https://github.com/containerd/containerd/issues/12493
3639# Also ignored in /dependabot.yml
3740# shellcheck disable=SC2046
3841go get $( go list -m -f ' {{if not (or .Indirect .Main)}}{{.Path}}{{end}}' all | \
3942 grep -v " ^github.com/awslabs/soci-snapshotter" | \
4043 grep -v " ^google.golang.org/grpc" | \
44+ grep -v " ^github.com/opencontainers/runtime-spec" | \
4145 grep -v " ^k8s.io/" )
4246popd
4347make tidy
You can’t perform that action at this time.
0 commit comments