Security Audit #106
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: Security Audit | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| schedule: | |
| - cron: '0 0 * * 1' # Weekly on Mondays | |
| jobs: | |
| security: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Security Audit | |
| uses: carlos-camara/qa-hub-actions/security-audit@main | |
| with: | |
| target-path: 'qa_framework/' | |
| bandit-skip: 'B101' # Skip assert warnings - valid for BDD test framework |