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 848074b commit 524e399Copy full SHA for 524e399
1 file changed
.github/workflows/vu1nz-scan.yml
@@ -70,7 +70,7 @@ jobs:
70
scan_file = os.environ.get("RUNNER_TEMP", "") + "/vu1nz-scan.json"
71
try:
72
with open(scan_file) as f:
73
- data = json.load(f)
+ data = json.loads(f.read(), strict=False)
74
except Exception as e:
75
print(f"::warning::Could not parse scan results: {e}")
76
# Write fallback so the comment step still works
0 commit comments