ci(dependabot): stop ci-pip version-update PRs (security-only)#385
Merged
Conversation
The hash-locked CI dev tooling under .github/requirements/ is regenerated by scripts/update-lockfiles.sh (uv), which honours each lockfile's target Python via --python-version. Dependabot bumps the pinned .txt files directly and does NOT respect those targets, so every ci-pip group PR broke the 3.9 matrix rows — either dropping the `==` pin on a conditional dep (--require-hashes failure) or pulling py3.10-only pytest/numpy/hypothesis. Six such PRs broke (#367 numpy, #377/#379/#382/#384) and none merged. Set open-pull-requests-limit: 0 for this ecosystem to disable its version-update PRs; security updates are unaffected, and the tooling is refreshed manually via update-lockfiles.sh.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The hash-locked CI dev tooling under
.github/requirements/is regenerated byscripts/update-lockfiles.sh(uv, honouring each lockfile's target Python via--python-version). Dependabot bumps the pinned.txtfiles directly and does NOT respect those targets, so every ci-pip group PR broke the Python 3.9 matrix rows — dropping the==pin on a conditional dep, or pulling py3.10-only pytest/numpy/hypothesis. Six such PRs broke (#367, #377, #379, #382, #384); none merged.Set
open-pull-requests-limit: 0on the/.github/requirementspip ecosystem to disable its version-update PRs. Security updates are unaffected. The tooling is refreshed manually viaupdate-lockfiles.sh(verified: a fresh regen of all three lockfiles from main is a no-op — they are already correct). Closes the recurring ci-pip breakage; #384 is closed as the last broken instance.