Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ on:
permissions:
contents: read

# Cancel superseded runs on the same ref — PRs and main alike; a newer push
# always carries its own full run (CI-CD-STANDARD §11c).
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
cancel-in-progress: true

jobs:
verify:
Expand All @@ -44,6 +46,7 @@ jobs:
uses: astral-sh/setup-uv@d31148d669074a8d0a63714ba94f3201e7020bc3 # v8.3.0
with:
version: "0.11.26"
enable-cache: true # CI job only — release.yml keeps caching off (§8c)

# `--frozen` fails the build on any drift between pyproject.toml and the
# committed uv.lock, instead of silently re-resolving (CQ-09, SEC-13).
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ name: codeql

# CodeQL SAST across the Python app and the GitHub Actions workflows themselves
# (SECURITY-AND-SUPPLY-CHAIN-STANDARD SEC-08, CI-CD-STANDARD CICD-19/20). Runs
# on every push and pull request to main plus a weekly schedule so newly
# disclosed query patterns are caught even without a code change. Code scanning
# is available because this is an open-source repository.
# on every pull request into main plus a weekly schedule so newly disclosed
# query patterns are caught even without a code change (CI-CD-STANDARD §11e:
# the PR run already covers what a push-to-main run would re-analyze). Code
# scanning is available because this is an open-source repository.

on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
Expand Down
Loading