bandersnatch_security_audit #862
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bandersnatch_security_audit | |
on: | |
schedule: | |
- cron: "0 6 * * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: bandersnatch Security Audit | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "*" | |
- name: Install latest pip, setuptools + tox | |
run: | | |
python -m pip install --upgrade pip setuptools pip-audit | |
- name: Run pip-audit on bandersnatch deps | |
run: | | |
pip-audit -r requirements.txt |