Skip to content

Commit

Permalink
fix: fix bandit workflow configuration (DEV-2536) #470
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Aug 14, 2023
1 parent bace9aa commit 4fd6a10
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/bandit.yml
Expand Up @@ -10,11 +10,16 @@ jobs:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by
# github/codeql-action/upload-sarif to get the Action run status


runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Bandit Scan
uses: shundor/python-bandit-scan@main
with: # optional arguments
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information.
level: high
confidence: medium

0 comments on commit 4fd6a10

Please sign in to comment.