chore: enable weekly Dependabot version updates - #785
Merged
Conversation
Until now only Dependabot security updates ran on this repository. That is why poetry.lock drifted far enough to accumulate 12 open security alerts before anyone noticed, six of which were a single GitPython advisory left unfixed since PR #779 failed to deliver the bump (see #781). Two ecosystems, both weekly: pip minor and patch bumps arrive as one grouped pull request so routine maintenance is a single review. Major bumps stay separate. github-actions action versions are their own supply chain surface; a compromised action runs with access to the workflow. torch and torchvision are excluded from version updates. They are pinned to exact versions from the custom CUDA wheel index in pyproject.toml and have to move together, so routine bumps would break the pairing or pull the plain PyPI build instead. The exclusions are scoped to version-update types only, so security alerts for torch and torchvision still come through. 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.
Only Dependabot security updates ran on this repository until now. That is why
poetry.lockdrifted far enough to accumulate 12 open alerts before anyone looked, six of them a single GitPython advisory that stayed unfixed because PR #779 failed to deliver the bump (see #781).This adds weekly version updates for two ecosystems:
pipgithub-actionsopen-pull-requests-limitis 5 per ecosystem.torch and torchvision are excluded from version updates
They are pinned to exact versions served from the custom CUDA wheel index declared in
pyproject.toml, and the two have to move together. Routine bumps would either break that pairing or silently pull the plain PyPI build instead of the cu130 one, so they are upgraded by hand.The exclusions are scoped to
version-update:semver-*types only, which means Dependabot security alerts for torch and torchvision still come through. That matters: one of the 12 alerts just closed was a torch advisory.🤖 Generated with Claude Code