chore(security): add Dependabot cooldown, grouped updates, and pin Python deps#125
Merged
Merged
Conversation
Copilot created this pull request from a session on behalf of
felickz
May 20, 2026 21:11
View session
There was a problem hiding this comment.
Pull request overview
Supply-chain hardening for the repo's automated dependency tooling: adds a Dependabot cooldown to reduce update churn, corrects the github-actions grouping (Actions don't have production/development dependency types), and tightens the CI install step by pinning pipenv and using pipenv sync against the committed lockfile.
Changes:
- Add a 3-day Dependabot cooldown to both
pipandgithub-actionsecosystems. - Replace invalid production/development groups for
github-actionswith a single wildcardactionsgroup. - Pin pipenv in CI and switch from
pipenv install --devtopipenv sync --devfor reproducible installs.
Show a summary per file
| File | Description |
|---|---|
| .github/dependabot.yml | Adds cooldown to both ecosystems and fixes the github-actions grouping. |
| .github/workflows/python-build-test.yml | Pins pipenv version and uses pipenv sync --dev against the lockfile. |
Copilot's findings
- Files reviewed: 2/2 changed files
- Comments generated: 0
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
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.
Supply-chain hardening: throttle Dependabot noise, fix github-actions grouping, and lock pipenv installs to the committed lockfile.
dependabot.ymlcooldown: default-days: 3to bothpipandgithub-actionsentriesproduction/developmentgroups with a single wildcard group — Actions have no such distinction:pipgroups (production-dependencies/development-dependencies) left as-ispython-build-test.yml2026.6.1) instead of floating latestpipenv install --dev→pipenv sync --devto install strictly fromPipfile.lock(already committed)