18 lines
338 B
YAML
18 lines
338 B
YAML
name: Security Audit
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 0" # Weekly
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
safety:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
|
|
with:
|
|
python-version: ${{ vars.PYTHON_VERSION }}
|
|
|
|
- name: Run safety check
|
|
run: safety check
|