Skip to content

Commit c2bb07b

Browse files
committed
test
1 parent ebf8ad0 commit c2bb07b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/snyk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
[[ "$(jq '.ok' /tmp/scan.json)" == "true" ]] && exit 0
4747
4848
# Update requirements.in with the snyk fix suggestions
49-
python bin/snyk-update.py
49+
python tools/snyk-update.py
5050
5151
# Update requirements.txt
52-
make requirements
52+
make update-dependencies
5353
5454
# Check if there are any changes
5555
if [ -z "$(git status --porcelain)" ]; then

tools/snyk-update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44

55
# Load results
6-
scan_file = open('scan.json')
6+
scan_file = open('/tmp/scan.json')
77
scan = json.load(scan_file)
88
scan_file.close()
99

0 commit comments

Comments
 (0)