Bump actions/checkout from 6.0.3 to 7.0.0 #409
Workflow file for this run
This file contains hidden or 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/* | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/workflows/gh-page.yml' | |
| pull_request: | |
| branches: | |
| - '*' | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/workflows/gh-page.yml' | |
| workflow_dispatch: | |
| jobs: | |
| Bandit: | |
| name: 'Bandit' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v7.0.0 | |
| - name: 'Set up Python' | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: '3.14' | |
| - name: 'Install Dependencies' | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install bandit | |
| - name: 'Bandit Check' | |
| run: | | |
| # Exclude the GUI file from the bandit check, because it is auto-generated by wxFormBuilder | |
| bandit -r . --exclude=gui.py,icons.py,./tests,./venv -f txt >> $GITHUB_STEP_SUMMARY |