chore(security): add Dependabot cooldown/groups and hash-pin release pip installs#65
Open
Copilot wants to merge 2 commits into
Open
chore(security): add Dependabot cooldown/groups and hash-pin release pip installs#65Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
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
Comment on lines
20
to
+25
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| cooldown: | ||
| default-days: 3 |
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 updates dependency hygiene controls for the repository by (1) adding Dependabot cooldown/grouping behavior per ecosystem and (2) removing ad-hoc pip installs from release automation in favor of hash-verified requirements.
Dependabot policy hardening (
.github/dependabot.yml)cooldown.default-days: 3to eachupdatesentry.actionsgroup.Deterministic pip install in release workflow (
.github/workflows/release.yml)pip install -r requirements.txt --require-hashes > /dev/nullPinned Python dependency lock (
requirements.txt)uv pip compile --generate-hashesfor the workflow’s Python dependency set (includingyqand transitive dependencies).