Skip to content

Bump com.github.spotbugs:spotbugs-maven-plugin in /java #169

Bump com.github.spotbugs:spotbugs-maven-plugin in /java

Bump com.github.spotbugs:spotbugs-maven-plugin in /java #169

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"