diff --git a/Makefile b/Makefile index 1adbcf6..24b7eec 100644 --- a/Makefile +++ b/Makefile @@ -60,4 +60,9 @@ test: .PHONY: worker worker: clear - go run worker/worker.go \ No newline at end of file + go run worker/worker.go + +# Check for direct dependency updates +.PHONY: check-updates +check-updates: + go list -u -m -f '{{if not .Indirect}}{{.}}{{end}}' all