Skip to content

Commit

Permalink
Update bandit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nambi21 authored Jan 12, 2025
1 parent 7db66e0 commit 36d747f
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
timeout-minutes: 15

steps:
steps:
- name: Checkout code
uses: actions/checkout@v3

Expand All @@ -32,8 +33,18 @@ jobs:
- name: Perform Bandit Analysis
uses: PyCQA/bandit-action@v1
with:
targets: "."

configfile: 'DEFAULT'
profile: 'DEFAULT'
tests: 'DEFAULT'
skips: 'DEFAULT'
severity: 'DEFAULT'
confidence: 'DEFAULT'
exclude: '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg'
baseline: 'DEFAULT'
ini: 'DEFAULT'
targets: '.'
args: '-r . -f json -o ${{ env.JSON_REPORT_PATH }}'

- name: Upload Bandit Report as Artifact
if: always()
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 36d747f

Please sign in to comment.