You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add scripts to update vendor and verify vendor. Vendor verification should run in Travis for all pull requests to ensure the go.mod file includes the correct dependencies.
The update vendor script will run go mod tidy to prune all extraneous requirements.
Why is this needed
To ensure that the contents of the go.mod file and the /vendor directory are always correct and verified.
What would you like to be added
Add scripts to update vendor and verify vendor. Vendor verification should run in Travis for all pull requests to ensure the
go.mod
file includes the correct dependencies.The update vendor script will run
go mod tidy
to prune all extraneous requirements.Why is this needed
To ensure that the contents of the
go.mod
file and the/vendor
directory are always correct and verified.Comments
This is based on the current implementation in the Kubernetes repository:
update-vendor.sh
script.verify-vendor.sh
script.The text was updated successfully, but these errors were encountered: