Skip to content

Commit c6164db

Browse files
committed
Add bandit dynamic analysis workflow https://github.com/marketplace/actions/bandit-by-pycqa
1 parent d1fc104 commit c6164db

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/bandit.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Bandit Dynamic Analysis
3+
4+
on:
5+
workflow_dispatch:
6+
7+
jobs:
8+
analyze:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
# required for all workflows
12+
security-events: write
13+
steps:
14+
- name: Perform Bandit Analysis
15+
uses: PyCQA/bandit-action@v1

0 commit comments

Comments
 (0)