Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpetrucciani/bandit-check
github action to run the bandit security linter
https://github.com/jpetrucciani/bandit-check
action bandit github-action hacktoberfest lint python security
Last synced: 2 months ago
JSON representation
github action to run the bandit security linter
- Host: GitHub
- URL: https://github.com/jpetrucciani/bandit-check
- Owner: jpetrucciani
- License: mit
- Created: 2019-10-10T21:03:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-24T00:15:17.000Z (4 months ago)
- Last Synced: 2024-10-18T23:21:40.512Z (3 months ago)
- Topics: action, bandit, github-action, hacktoberfest, lint, python, security
- Language: Dockerfile
- Homepage:
- Size: 21.5 KB
- Stars: 15
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bandit-check
GitHub Action for [bandit](https://github.com/PyCQA/bandit) python security linter
Make sure you have a `.bandit` file at the root of your repository!
## Inputs
### `path`
**Optional** The path to run bandit on
**Default** `"."`
### `bandit_flags`
**Optional** Optional Bandit flags (refer to `bandit --help`)
**Default** `""`
## Outputs
None
## Example usage
```yaml
uses: jpetrucciani/bandit-check@main# specify a path
uses: jpetrucciani/bandit-check@main
with:
path: '.'# provide some flags
uses: jpetrucciani/bandit-check@main
with:
bandit_flags: '-lll -o output.json -f json'
```