Skip to content
William Kennedy edited this page May 31, 2020 · 3 revisions

Updating Dependencies

Using the 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 if way to target specific dependencies to update as well.

Modules Wiki

To quickly update all the dependencies to latest versions, run this commands.

$ cd $HOME/code/service
$ make deps-upgrade