Skip to content
Closed
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
18 changes: 17 additions & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,22 @@ env:
PYTHONUNBUFFERED: "1"

jobs:
secret-scan:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 0
- name: Run gitleaks
uses: gitleaks/gitleaks-action@v2
env:
GITLEAKS_CONFIG: .gitleaks.toml
GITLEAKS_ENABLE_COMMENTS: false

dependency-review:
if: >
github.event_name == 'pull_request' &&
Expand Down Expand Up @@ -64,7 +80,7 @@ jobs:
python -m pip freeze --exclude-editable > .pip-audit-requirements.txt
python -m pip install pip-audit
- name: Run pip-audit
run: pip-audit --strict --progress-spinner off -r .pip-audit-requirements.txt --ignore-vuln CVE-2026-4539
run: pip-audit --strict --progress-spinner off -r .pip-audit-requirements.txt

codeql:
if: >
Expand Down
Loading