We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b9ab99 commit 141bd01Copy full SHA for 141bd01
.github/workflows/security-gateway.yml
@@ -29,9 +29,11 @@ jobs:
29
run: |
30
python -m pip install --upgrade pip
31
if [ -f "requirements.txt" ]; then
32
- pip install -r requirements.txt
+ echo "Installing dependencies from requirements.txt..."
33
+ pip install -r requirements.txt || { echo "Dependency installation failed!"; exit 1; }
34
else
35
echo "requirements.txt not found! Skipping dependency installation."
36
+ exit 1
37
fi
38
39
- name: Scan for vulnerabilities with Trivy
0 commit comments