-
Notifications
You must be signed in to change notification settings - Fork 1k
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
go.mod: Support updating non-release git dependencies #2028
Comments
Just to clarify, are you referring to updating libraries that aren't go-modules compatible yet? |
No, I'm refering to dependencies that are go-modules, but which don't have tags, so you're pinned to specific commits. https://github.com/araddon/dateparse is an example of such a dependency. |
Ah I see, thanks for clarifying! Yeah it'd be good to support that, but I don't think that we'll be able to get to this soon tbh. Note for future self: Might be enough to patch
|
Is there any update as to if/when this might be available? I have a similar scenario and it would be really useful to have Dependabot create the PRs. |
Some more code notes: dependabot-core/go_modules/lib/dependabot/go_modules/update_checker/latest_version_finder.rb Line 93 in 69f0121
Will need to see if that can be tweaked/augmented to support finding commits. We could probably use something like |
#3017 (comment) |
We would like to track pseudo-versions for an internal project that doesn't tag our own code, just as mentioned here: #3017 (comment). I've found that adding the
For the
The command dependabot currently uses will only show the current version for a module like this.
For modules that do use tags adding the
I don't know the internals of dependabot and I don't know Ruby well enough to make a code contribution here, but I am hopeful that the above information could guide one of the maintainers toward satisfying this feature request. @jeffwidman Are you still involved enough to help out here? |
Are there any updates on this issue? |
can't automate this yet, see dependabot/dependabot-core#2028 closes #843
Are there any updates on this as dependabot is unable to update the action-runner version to : v2.318.0-ubuntu-22.04 from v2.317.0-ubuntu-22.04 |
Empirically, dependabot only seems to send PRs to update dependencies that have tags in git. I've also got a bunch of dependencies that point at git repos, and I'd like PRs updating them as well! In other languages, git based dependencies appear to get updated.
The text was updated successfully, but these errors were encountered: