Skip to content

Bump isort from 6.0.1 to 6.1.0 #163

Bump isort from 6.0.1 to 6.1.0

Bump isort from 6.0.1 to 6.1.0 #163

Workflow file for this run

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