chore(deps): fix uv resolution failure and widen Dependabot coverage - #25
Merged
Conversation
Ignore setuptools in the uv ecosystem, add the missing terraform ecosystem, and group github-actions updates into a single PR. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
Three changes to
.github/dependabot.yml, no other files touched.1. Ignore
setuptoolsin theuvecosystem (the actual bug fix)The weekly
uvupdater job has been failing since June withdependency_file_not_resolvable:Failing runs:
27262733701,27675353361,28084795393,32231592436.Cause:
setuptoolsappears only in[build-system].requiresofpackages/common/pyproject.tomlandpackages/jamfy/pyproject.toml. It is not inuv.lock(verified: zero occurrences), so Dependabot's sandbox cannot build the editable workspace membercommonand the whole job aborts — meaning no Python updates at all, not just the setuptools one.Ignoring
setuptoolslets the rest of the group resolve. The build-system pin stays managed by hand.2. Add the missing
terraformecosystemterraform/has a.terraform.lock.hclandterraform/main.tfpinsdeploymenttheory/jamfproat0.37.0, which Dependabot has never offered to update because the ecosystem was never declared. Added withdirectory: "/terraform", a weekly schedule, and aterraform-providersgroup.3. Group the
github-actionsecosystemIt was ungrouped — #20 and #21 were two separate PRs that should have been one. Added
patterns: ["*"]to match the style already used by theuventry.Deliberately not added
No
npmand nodockerentries — there is nopackage.jsonand noDockerfileanywhere in this repo.Verification
.github/dependabot.ymlparses as valid YAML (a malformed file silently disables Dependabot).make lintclean;make test37 passed.uv.lockunchanged.🤖 Generated with Claude Code