From d927807e5d9b8c990a2d1116b1c930cf50f4ae02 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Mon, 3 Nov 2025 10:21:13 +0100 Subject: [PATCH] Adjust JSON depth for SARIF output Reduced JSON depth for SARIF conversion from 200 to 100. Signed-off-by: Niels Lohmann --- .github/workflows/msvc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index 3b1e69e3f..8d98d6e6e 100644 --- a/.github/workflows/msvc.yml +++ b/.github/workflows/msvc.yml @@ -72,7 +72,7 @@ jobs: $run.properties['category'] = "run-$i" } - $sarif | ConvertTo-Json -Depth 200 | Set-Content -Encoding utf8 $outputPath + $sarif | ConvertTo-Json -Depth 100 | Set-Content -Encoding utf8 $outputPath Write-Host "✅ Wrote patched SARIF to $outputPath" # Upload SARIF file to GitHub Code Scanning Alerts