Skip to content

Bump pyinstaller from 6.10.0 to 6.11.0 in /src #69

Bump pyinstaller from 6.10.0 to 6.11.0 in /src

Bump pyinstaller from 6.10.0 to 6.11.0 in /src #69

Workflow file for this run

name: 'Bandit Check'
on:
push:
branches:
- main
- dseichter/*
pull_request:
branches:
- '*'
jobs:
Bandit:
name: 'Bandit'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Set up Python'
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: 'Install Dependencies'
run: |
python -m pip install --upgrade pip
pip install bandit
- name: 'Bandit Check'
run: |
# Exclude the GUI file from the PEP8 check, because it is auto-generated by wxFormBuilder
bandit -r . --exclude=gui.py,icons.py -f txt >> $GITHUB_STEP_SUMMARY