Add upgrade-vendor helper to Makefile

This commit is contained in:
Nicholas Thompson
2024-02-19 19:51:13 +02:00
parent 9f9e25a796
commit 7bcdc3276f

View File

@@ -56,3 +56,7 @@ clean:
vendor:
go mod tidy
go mod vendor
.PHONY: upgrade-vendor
upgrade-vendor:
go get -u ./...