chore: update dependencies in submodules

Our submodules should also get auto-updated and auto-tidied by the
Makefile targets; this should then be done automatically by our github
action scheduled task.
This commit is contained in:
justinsb 2024-02-22 08:48:48 -05:00
parent f21109e94f
commit 7cc3147e17
1 changed files with 5 additions and 1 deletions

View File

@ -324,12 +324,16 @@ ko-kops-utils-cp-push:
gomod:
go mod tidy
go mod vendor
cd tests/e2e; go mod tidy
cd hack; go mod tidy
cd tests/e2e; go mod tidy
cd tools/otel/traceserver; go mod tidy
.PHONY: goget
goget:
go get $(shell go list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -mod=mod -m all | grep -v spotinst-sdk-go)
cd hack; go get $(shell go list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -mod=mod -m all)
cd tests/e2e; go get $(shell go list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -mod=mod -m all | grep -v kubetest2)
cd tools/otel/traceserver; go get $(shell go list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -mod=mod -m all)
.PHONY: depup
depup: goget gomod