chore(deps): adopt Renovate, remove Dependabot (ADR-0004)#27
Merged
Conversation
python-template was the org's last dependency-management holdout still on Dependabot. Replace .github/dependabot.yml with a standalone .github/renovate.json5 (config:recommended) matching the org standard and the sibling template repos (drift-gate, chiseled). Enables the github-actions and pep621 managers for the repo's actual dependency files. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
NWarila
added a commit
that referenced
this pull request
May 29, 2026
…4) (#28) ## Summary Round-3 doc-accuracy fix (AUDIT-2026-05-28 round 2). `PLAN.md` still asserted **Dependabot** as the chosen dependency-update tool, contradicting the shipped state after PR #27 (merged): this repo adopted **Renovate** (`.github/renovate.json5`) and removed Dependabot (`.github/dependabot.yml` deleted), per **ADR-0004**. Verified current state before editing: - `gh api .../contents/.github/renovate.json5` -> exists - `gh api .../contents/.github/dependabot.yml` -> 404 ## Stale references reconciled | Where | Before | After | | --- | --- | --- | | Resolved Decision #5 | "**Dependabot, not Renovate.**" | "**Renovate, not Dependabot.**" — superseded by ADR-0004, cites `renovate.json5` config + PR #27 removal | | Phase 2 TODO | `[ ] Add Dependabot version updates...` | `[x]` done via Renovate (ADR-0004), not Dependabot | | Security policy | "Use **Dependabot** version updates..." | "Use **Renovate** version updates (`.github/renovate.json5`, per ADR-0004)..." | | `uv` pilot "not locked yet" | "Dependabot support exists, but..." | "Dependency-bot support exists (the repo uses Renovate per ADR-0004...)..." | | `uv` security-surface caveat | "Dependabot alerts and updates" | "Dependabot security alerts (advisory visibility; version updates handled by Renovate per ADR-0004)" | ## Left as historical (intentional) The **Research Anchors** bibliography (lines ~1085-1165) records docs reviewed during planning, including the `uv`+Dependabot and `uv`+Renovate integration links and the "GitHub Dependabot for Actions" doc. These are accurate tool-*capability* statements and genuine planning history — not false current-state assertions — so they are preserved. ## Validation - `markdownlint-cli2 PLAN.md` (repo `.markdownlint-cli2.jsonc`) -> **0 errors** - `diff --stat`: `PLAN.md | 30 +++--, 19 insertions(+), 11 deletions(-)` DO NOT MERGE. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.7 <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.
Summary
NWarila/python-templatewas the org's last dependency-management holdout (per AUDIT-2026-05-28): it still shipped.github/dependabot.yml(github-actions + pip, weekly) and had no Renovate config. Org standard (ADR-0004) is Renovate everywhere. This PR brings it into line..github/dependabot.yml..github/renovate.json5usingconfig:recommended(templates are preset sources; they do notextendsanother repo's preset), matching sibling template repos (drift-gate, chiseled).Config decisions
enabledManagers:github-actions+pep621.github-actions— SHA-pinneduses:exist in.github/workflows/*.ymland the composite.github/actions/setup-python/action.yml;pinDigests: truekeeps them pinned by digest.pep621— Python deps live only inpyproject.toml([project.optional-dependencies].dev, e.g.mypy==1.16.0,ruff==0.11.12); there is norequirements*.txt, sopip_requirementsis not applicable.custom.regexmanager — grep confirmed there are no# renovate:-annotated pinnedpip install name==verlines in the workflows (the pins are all inpyproject.toml), so the regex manager drift-gate carries is unnecessary here.ci(deps)for Actions,chore(deps)for Python.Validation
npx renovate-config-validator .github/renovate.json5→ Config validated successfully.Note: this is a clean, focused config built from current
main. The stale April branchfeat/renovate-and-qa-scripts(which bundled arenovate.jsonwith unrelated breaking changes) was intentionally ignored.🤖 Generated with Claude Code