Skip to content

Bump urllib3 from 1.26.18 to 1.26.19 (#89) #267

Bump urllib3 from 1.26.18 to 1.26.19 (#89)

Bump urllib3 from 1.26.18 to 1.26.19 (#89) #267

Workflow file for this run

name: Bandit
on:
push:
branches: main
pull_request:
branches: "*"
jobs:
bandit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
- uses: snok/install-poetry@v1
with:
version: 1.8.0
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install Dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --with test --no-root
- name: Run Bandit
run: poetry run bandit -c pyproject.toml -r $(git ls-files '*.py')