Skip to content

Co-authored-by: jsvgd7g655-alt <jsvgd7g655-alt@users.noreply.github.com> #8

Co-authored-by: jsvgd7g655-alt <jsvgd7g655-alt@users.noreply.github.com>

Co-authored-by: jsvgd7g655-alt <jsvgd7g655-alt@users.noreply.github.com> #8

Workflow file for this run

name: Dependency Check

Check failure on line 1 in .github/workflows/dependencies.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dependencies.yml

Invalid workflow file

(Line: 6, Col: 22): A sequence was not expected
on:
schedule:
- cron: '0 0 * * 1'
workflow_dispatch: []
jobs:
outdated:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependency tools
run: |
python -m pip install --upgrade pip
pip install pip-review safety
- name: Check for outdated packages
run: |
pip-review --local --auto --dry-run || true
- name: Run vulnerability scan
run: |
safety check --file=requirements.txt --full-report