Commit b03c47a
committed
Fix required_ruby_version in placeholder gemspec
The placeholder dependabot-core.gemspec had required_ruby_version set to
'>= 3', which caused Dependabot's own bundler update jobs to fail.
During update checks, RubyRequirementSetter picks the lowest Ruby version
that satisfies the gemspec constraint. '>= 3' resolved to 3.0.6, which
then got injected into the Gemfile as the Ruby version for dependency
resolution. Since dependabot-common and dependabot-vcpkg require Ruby
>= 3.3.0, every dependency update failed with
'dependency_file_not_resolvable'.
Bump to '>= 3.3.0' to match dependabot-common.gemspec.1 parent c924f2f commit b03c47a
1 file changed
+1
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
25 | | - | |
| 24 | + | |
26 | 25 | | |
0 commit comments