Pipeline uses dep to vendor dependencies.
Install the latest version from the link above or by running:
$ make bin/dep # Installs dep to ./bin/depOn MacOS you can install it using Homebrew:
$ brew install depIf you write new features which imports a new library, you have to vendor it:
$ dep ensure -v -add github.com/Masterminds/cookoo/webSometimes you have an unmerged PR, or a change which you don't even want to push upstream. In those cases you have a GH fork, and want use that instead of the origin.
Gopkg.toml:
[[constraint]]
name = "github.com/qor/auth"
branch = "master"
source = "github.com/banzaicloud/auth"If you are using a specific branch/tag like v1.2.0 in Gopkg.toml, just change it to the new version.
Perform an update:
$ dep ensure -v -update github.com/your/upgradable/packagesee GH issues: