Skip to content

chore(deps): bump actions/checkout from 6 to 7 #4

chore(deps): bump actions/checkout from 6 to 7

chore(deps): bump actions/checkout from 6 to 7 #4

Workflow file for this run

name: Security
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
schedule:
- cron: "0 6 * * 1"
jobs:
pip-audit:
name: Dependency Vulnerability Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 2.4.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Export requirements
run: poetry export --without-hashes -f requirements.txt -o /tmp/requirements.txt
- name: Run pip-audit
uses: pypa/gh-action-pip-audit@v1.1.0
with:
inputs: /tmp/requirements.txt