Skip to content

Commit 91102fc

Browse files
authored
Replace Bandit GitHub Action with manual installation
1 parent 9858947 commit 91102fc

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v3
6767

68-
- name: Run Bandit security check
69-
uses: gaurav-nelson/github-action-bandit@v1
70-
with:
71-
path: "."
72-
continue-on-error: true
68+
- name: Install Bandit
69+
run: pip install bandit
70+
71+
- name: Run Bandit security check
72+
run: bandit -r .
73+
continue-on-error: true

0 commit comments

Comments
 (0)