Skip to content

Commit f2b5076

Browse files
committed
Ignore runtime-spec in dependency bump script
Signed-off-by: David Son <davbson@amazon.com>
1 parent 98f63cb commit f2b5076

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

scripts/bump-deps.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
2829
go 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/")
3133
make tidy
3234

3335
pushd ./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
3841
go 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/")
4246
popd
4347
make tidy

0 commit comments

Comments
 (0)