We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e250ce commit 819e2f3Copy full SHA for 819e2f3
1 file changed
.github/workflows/ci.yml
@@ -105,11 +105,13 @@ jobs:
105
- name: Install dependencies
106
run: |
107
python -m pip install --upgrade pip
108
- pip install safety bandit
+ pip install bandit
109
110
- - name: Run safety check
111
- run: |
112
- safety scan --full-report
+ - name: Run Safety CLI to check for vulnerabilities
+ uses: pyupio/safety-action@v1
+ with:
113
+ api-key: ${{ secrets.SAFETY_API_KEY }}
114
+ args: --detailed-output # To always see detailed output from this action
115
116
- name: Run bandit security check
117
0 commit comments