Harden dependency management with Dependabot cooldowns, grouping, and hash-pinned Python requirements#65
Merged
Conversation
Copilot created this pull request from a session on behalf of
felickz
May 20, 2026 21:14
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR tightens dependency management for the repository by hardening Dependabot behavior (cooldown + grouping) and making the release workflow’s Python tooling install deterministic via hash-pinned requirements.
Changes:
- Added Dependabot cooldown configuration per ecosystem and grouped GitHub Actions updates into a single wildcard group.
- Updated the release workflow to install
yq(and its deps) from a hash-verifiedrequirements.txtinstead of ad-hocpip install yq. - Introduced a new hash-pinned
requirements.txtlockfile for the workflow’s Python dependencies.
Show a summary per file
| File | Description |
|---|---|
requirements.txt |
Adds a hash-pinned Python dependency lockfile intended for deterministic installs. |
.github/workflows/release.yml |
Switches release-version parsing dependency install to pip install -r requirements.txt --require-hashes. |
.github/dependabot.yml |
Adds cooldown settings and groups GitHub Actions updates under a single group. |
Copilot's findings
- Files reviewed: 2/3 changed files
- Comments generated: 1
Dependency ReviewThe following issues were found:
Snapshot WarningsConsider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice. License Issuesrequirements.txt
OpenSSF Scorecard
Scanned Files
|
Copilot
AI
changed the title
chore(security): add Dependabot cooldown/groups and hash-pin release pip installs
Harden dependency management with Dependabot cooldowns, grouping, and hash-pinned Python requirements
May 26, 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.
This PR tightens dependency management for the repository by hardening Dependabot behavior (cooldown + grouping) and making the release workflow's Python tooling install deterministic via hash-pinned requirements.
Changes Made
.github/dependabot.yml: Added cooldown settings and groups GitHub Actions updates under a single wildcard group. Added apipecosystem entry so Dependabot tracks and proposes updates for the hash-pinnedrequirements.txtdependencies (weekly schedule, 3-day cooldown, grouped underpython-deps)..github/workflows/release.yml: Switches release-version parsing dependency install topip install -r requirements.txt --require-hashesfor deterministic, hash-verified installs.requirements.txt: Adds a hash-pinned Python dependency lockfile foryqand its transitive dependencies, intended for deterministic installs in CI.