Skip to content

v0.105.5 — Ollama tuning, git ingest perf, queue display fixes #205

v0.105.5 — Ollama tuning, git ingest perf, queue display fixes

v0.105.5 — Ollama tuning, git ingest perf, queue display fixes #205

Workflow file for this run

name: Security Audit
on:
push:
branches: [main]
paths:
- 'pyproject.toml'
- 'uv.lock'
pull_request:
paths:
- 'pyproject.toml'
- 'uv.lock'
schedule:
# Run weekly on Monday at 08:00 UTC
- cron: '0 8 * * 1'
jobs:
pip-audit:
name: Audit Python dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Set up Python
run: uv python install 3.12
- name: Install pip-audit
run: pip install pip-audit
- name: Audit dependencies
run: uv export --frozen --no-hashes --no-emit-project > /tmp/requirements.txt && pip-audit -r /tmp/requirements.txt --desc