-
-
Notifications
You must be signed in to change notification settings - Fork 374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use go's vendoring #284
Use go's vendoring #284
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be possible to download and cache the vendor folder in CI instead of having it inside the repo to keep the repo size smaller?
that's how it's done now - and that's why it sometimes fail unrelated & storing it on an external storage miss the point either ... |
Ahh okay. Sorry, now I get the whole point of this PR. 🤦🏾 |
go mod tidy && go mod vendor
update vendor folder after changes to go.modthis way we can delete some go get steps on our CI and make it more resistant against external changes made by 3rd-party's ...