[CHORE](devops) Keep Dependabot uv updates in uv.lock - #613
Merged
Conversation
Seth Fitzsimmons (sethfitz)
requested review from
a team and
John McCall (lowlydba)
as code owners
July 30, 2026 18:01
Seth Fitzsimmons (sethfitz)
temporarily deployed
to
staging
July 30, 2026 18:02 — with
GitHub Actions
Inactive
🗺️ Schema reference docs preview is live!
Note ♻️ This preview updates automatically with each push to this PR. |
Seth Fitzsimmons (sethfitz)
force-pushed
the
dependabot-uv-lockfile-only
branch
from
July 30, 2026 18:09
acf6364 to
a5584f7
Compare
Seth Fitzsimmons (sethfitz)
temporarily deployed
to
staging
July 30, 2026 18:10 — with
GitHub Actions
Inactive
Seth Fitzsimmons (sethfitz)
force-pushed
the
dependabot-uv-lockfile-only
branch
from
July 30, 2026 18:24
a5584f7 to
512b447
Compare
Seth Fitzsimmons (sethfitz)
temporarily deployed
to
staging
July 30, 2026 18:26 — with
GitHub Actions
Inactive
John McCall (lowlydba)
previously approved these changes
Jul 30, 2026
Seth Fitzsimmons (sethfitz)
force-pushed
the
dependabot-uv-lockfile-only
branch
from
July 30, 2026 18:32
512b447 to
8de262c
Compare
Seth Fitzsimmons (sethfitz)
temporarily deployed
to
staging
July 30, 2026 18:34 — with
GitHub Actions
Inactive
Set versioning-strategy: lockfile-only on the uv ecosystem so Dependabot updates uv.lock without editing any pyproject.toml. lockfile-only does not refresh transitive-only entries (dependabot-core#14073), so add a weekly uv-lock-refresh.yml workflow that runs `uv lock --upgrade` for those and opens a PR touching only uv.lock. Closes #612 Signed-off-by: Seth Fitzsimmons <seth@mojodna.net>
Seth Fitzsimmons (sethfitz)
force-pushed
the
dependabot-uv-lockfile-only
branch
from
July 30, 2026 18:44
8de262c to
f29a194
Compare
John McCall (lowlydba)
approved these changes
Jul 30, 2026
Victor Schappert (vcschapp)
approved these changes
Jul 30, 2026
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.
Closes #612.
Restrict Dependabot's uv ecosystem to uv.lock and never edit pyproject.toml, then cover the transitive deps Dependabot leaves behind with a scheduled refresh.
Changes
.github/dependabot.yml: addversioning-strategy: lockfile-onlyto the uv ecosystem. Dependabot now updates uv.lock only, for the direct deps declared in the manifests..github/workflows/uv-lock-refresh.yml: weeklyuv lock --upgradejob that opens a PR refreshing transitive-only entries in uv.lock. lockfile-only does not touch these (uv: Transitive dependencies are not updated when using lockfile-only strategy? dependabot/dependabot-core#14073). pyproject.toml files stay unchanged.Notes
GITHUB_TOKENdo not trigger other workflows, so CI will not gate the refresh PR. An in-file NOTE flags this; wiring a PAT/App token viatoken:is the fix if CI gating is wanted.uv lock --upgraderespects the same caps. Both are inherent to the no-manifest-edits requirement.