This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Update runner type to macos-14 in workflow #2776
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
| # GitHub Actions Bandit Workflow | |
| name: Bandit | |
| on: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| # Task will fail if any high-severity issues are found | |
| # Ignoring submodules | |
| - name: Run Bandit Security Analysis | |
| run: | | |
| python -m pip install bandit | |
| python -m bandit -r . -x ./third_party -lll |