Skip to content
Adam Chalkley edited this page Dec 1, 2020 · 3 revisions

Updating Dependencies

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