-
Notifications
You must be signed in to change notification settings - Fork 651
Go Modules
Adam Chalkley edited this page Dec 1, 2020
·
3 revisions
Using the go get
, go mod tidy
and go mod vendor
commands will keep your dependencies up to date. It is recommended this is done on a reasonable cadence. There are lots of ways to target specific dependencies to update as well.
See these resources for more information:
To quickly update all the dependencies to latest versions, run these commands.
$ cd $HOME/code/service
$ make deps-upgrade
Contact Bill Kennedy at bill@ardanlabs.com if you are having issues getting the project running.