feat(Makefile): add `vendor-update`

Add `vendor-update` target to `Makefile`, which updates all dependencies
to their newest versions.
This commit is contained in:
Chris Lane 2020-11-27 09:50:11 -05:00
parent 3f4d4bddb2
commit 08fb9e11a9
1 changed files with 4 additions and 0 deletions

View File

@ -136,6 +136,10 @@ man:
vendor:
$(GO) mod vendor && $(GO) mod tidy && $(GO) mod verify
## vendor-update: update vendored dependencies
vendor-update:
$(GO) get -t -u ./...
## fmt: run go fmt
.PHONY: fmt
fmt: