Skip to content

Bump coverage from 7.6.9 to 7.6.10 #223

Bump coverage from 7.6.9 to 7.6.10

Bump coverage from 7.6.9 to 7.6.10 #223

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"