Skip to content

Weekly Security Scan #13

Weekly Security Scan

Weekly Security Scan #13

name: Weekly Security Scan
on:
schedule:
# Run every Monday at 9:00 AM UTC
- cron: '0 9 * * 1'
workflow_dispatch: # Allow manual triggering from any branch
permissions:
contents: read
jobs:
security-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install uv
uv tool install tox --with tox-uv
- name: Run security scan with tox
run: tox -e security
timeout-minutes: 2