Skip to content

Bump the main group across 1 directory with 3 updates #54

Bump the main group across 1 directory with 3 updates

Bump the main group across 1 directory with 3 updates #54

Workflow file for this run

# This file was generated from skeleton-ci/[email protected].
# Instead of changing this particular file, you might want to alter the template:
# https:/skeleton-ci/skeleton-python/tree/0.0.2rc-245-g8c04714/project/.github/workflows/audit.yml.jinja
# IMPORTANT!
# Pinned versions of actions and Poetry are managed in a different repository.
# Do not submit PRs to this file unless for this repo specifically.
# To change this workflow globally, submit a PR to https:/skeleton-ci/skeleton-python.
name: "Audit"
on: ["push"]
jobs:
pip-audit:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- name: "Install Poetry"
run: "pipx install poetry==1.8.2"
- name: "Set up Python 3.8"
uses: "actions/setup-python@v5"
with:
cache: "poetry"
- name: "Install the project"
run: "poetry install --all-extras"
- name: "Set up Python location for pip-audit"
shell: "bash"
run: 'echo "PIPAPI_PYTHON_LOCATION=$(poetry env info -e)" >> $GITHUB_ENV'
- name: "Audit"
uses: "pypa/[email protected]"