Skip to content

Bump sphinx-autodoc-typehints from 2.5.0 to 3.0.0 #190

Bump sphinx-autodoc-typehints from 2.5.0 to 3.0.0

Bump sphinx-autodoc-typehints from 2.5.0 to 3.0.0 #190

Workflow file for this run

name: bandit
on:
pull_request:
branches: [main]
permissions:
contents: read
pull-requests: write
jobs:
bandit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run Bandit Scan
uses: lukehinds/bandit-action@new-action
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: "examples src"
recursive: "true"