We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6164db commit 8528794Copy full SHA for 8528794
1 file changed
.github/workflows/bandit.yml
@@ -1,15 +1,25 @@
1
---
2
-name: Bandit Dynamic Analysis
+name: Bandit Security Scan
3
4
on:
5
+ push:
6
+ branches: ["master"]
7
+ pull_request:
8
9
+ schedule:
10
+ - cron: "0 0 * * 0"
11
workflow_dispatch:
12
13
jobs:
14
analyze:
15
runs-on: ubuntu-latest
16
permissions:
- # required for all workflows
17
security-events: write
18
+ env:
19
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
20
steps:
21
+ - name: Checkout code
22
+ uses: actions/checkout@v6.0.2
23
+
24
- name: Perform Bandit Analysis
25
uses: PyCQA/bandit-action@v1
0 commit comments