ci: enable Dependabot for github-actions and uv ecosystems#13
Merged
Conversation
Introduce `.github/dependabot.yml` with two ecosystems: - `github-actions`: one weekly PR containing all pending action updates. Grouping is safe now that every `uses:` reference is SHA-pinned (trailing `# vX.Y.Z` comment makes each bump readable). - `uv`: Dependabot's native ecosystem for `pyproject.toml` + `uv.lock`, which regenerates the lock file as part of each PR. Minor and patch bumps are grouped so unrelated routine bumps arrive together; majors are intentionally ungrouped so each one can be reviewed on its own. Both ecosystems: weekly cadence, `chore` commit prefix to match Conventional Commits, and a `dependencies` label so PRs are easy to filter. No `open-pull-requests-limit` — grouping already keeps the volume predictable.
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.
Summary
Introduce
.github/dependabot.ymlto keep GitHub Actions and Python dependencies current on a weekly cadence.Ecosystems
github-actionsOne grouped weekly PR covering every pending action bump. Grouping is safe because every
uses:reference inci.ymlandpublish.ymlis SHA-pinned with a trailing# vX.Y.Zcomment (see the companionci/pin-actions-by-shachange): each bump is a mechanical SHA rotation with a matching version-comment update, and the workflows themselves cover correctness.uvDependabot's native
uvecosystem — now GA — readspyproject.tomland regeneratesuv.lockas part of each update PR. This is preferable topackage-ecosystem: "pip", which would leaveuv.lockout of date after each bump.Grouping strategy:
Conventions
schedule.interval: "weekly"— cadence matches the Dependabot options reference.commit-message.prefix: "chore"— aligns with the repository's Conventional Commits style.labels: ["dependencies"]— default label so Dependabot PRs are easy to filter.open-pull-requests-limit— grouping already bounds the volume; an arbitrary cap would hide updates instead of organising them.