We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 491651b + 3868a74 commit c8b1d56Copy full SHA for c8b1d56
README.md
@@ -11,12 +11,15 @@ Bandit is a tool designed to find common security issues in Python code. This ac
11
To run a bandit scan include a step like this:
12
13
```yaml
14
- uses: reactive-firewall/bandit-action@v2
15
- with:
+ uses: reactive-firewall/python-bandit-scan@v2.1
+ with: # optional arguments
16
+ # Github token of the repository (automatically created by Github)
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information.
18
path: "."
19
level: high
20
confidence: high
- exit_zero: true
21
+ # exit with 0, even with results found
22
+ exit_zero: true # optional, default is DEFAULT
23
```
24
25
## Inputs
0 commit comments