Bump pyinstaller from 6.10.0 to 6.11.0 in /src #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |