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
This is an unstructured github issue, feel free to close this issue whenever appropriate. I just wanted to point this out--
According to this github blog post, dependabot can now support go mod tidy + go mod vendor:
Dependabot version updates now run the go mod tidy command during every update, which helps keep your go.mod file well-organized and free of stale module versions.
If your repository vendors its dependencies with go mod vendor, Dependabot now respects that configuration during version updates. No changes to the configuration file are required.
I'll test it out sometime and can open a PR to see if it makes a difference, unless someone else wants to get to it first. It should just be a lil' change to .dependabot.yml which does this--
---
version: 2updates:
- package-ecosystem: gomodvendor: true # <-- # Raise pull requests to update vendored dependencies that are checked in to the repositorydirectory: "/"schedule:
interval: dailyopen-pull-requests-limit: 10
Again, feel free to close this out whenever. Just logging. Thanks 👍
The text was updated successfully, but these errors were encountered:
This is an unstructured github issue, feel free to close this issue whenever appropriate. I just wanted to point this out--
According to this github blog post, dependabot can now support
go mod tidy
+go mod vendor
:With that said, I believe we just need to change
.dependabot
config to havevendor: true
ongomod
updatesI'll test it out sometime and can open a PR to see if it makes a difference, unless someone else wants to get to it first. It should just be a lil' change to
.dependabot.yml
which does this--Again, feel free to close this out whenever. Just logging. Thanks 👍
The text was updated successfully, but these errors were encountered: