ci: add pip-audit security scan - #46
Merged
tonyandrewmeyer merged 2 commits intoJun 1, 2026
Merged
Conversation
Adds a pip-audit workflow (runs on push/PR) to scan the resolved dependency environment for known CVEs. Updates build workflow to add --sbom=true --provenance=true to docker buildx, generating OCI SBOM and provenance attestations attached to the published image. Also brings build workflow up to date with canonical upstream (SHA-pinned docker actions at v4, explicit permissions). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
tonyandrewmeyer
force-pushed
the
add-security-scan-sbom
branch
from
May 30, 2026 08:26
b730a3b to
24f47d4
Compare
dwilding
reviewed
Jun 1, 2026
- Drop --sbom/--provenance from docker build (next release will be a rock; SBOM approach to be revisited then) - Replace uv venv + uv pip install with uv sync --frozen - Pin pip-audit in pyproject.toml dev deps and use uv run pip-audit instead of uvx, so the version is locked and auditable Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
dwilding
approved these changes
Jun 1, 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.
Extend the security posture of the repo:
security.yamlworkflow runningpip-auditon push and PRs to scan the resolved dependency environment for known CVEs (this compliments the scheduled dependabot scans, and in particular will flag PRs that introduce security issues by adding or updating dependencies).These are instead of the full secscan process, since this is a tutorial piece rather than a product we provide.