We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebf8ad0 commit c2bb07bCopy full SHA for c2bb07b
.github/workflows/snyk.yml
@@ -46,10 +46,10 @@ jobs:
46
[[ "$(jq '.ok' /tmp/scan.json)" == "true" ]] && exit 0
47
48
# Update requirements.in with the snyk fix suggestions
49
- python bin/snyk-update.py
+ python tools/snyk-update.py
50
51
# Update requirements.txt
52
- make requirements
+ make update-dependencies
53
54
# Check if there are any changes
55
if [ -z "$(git status --porcelain)" ]; then
tools/snyk-update.py
@@ -3,7 +3,7 @@
3
import os
4
5
# Load results
6
-scan_file = open('scan.json')
+scan_file = open('/tmp/scan.json')
7
scan = json.load(scan_file)
8
scan_file.close()
9
0 commit comments