From 01d01c6a57e9331150d0a01e5fc1c4e03ae19b28 Mon Sep 17 00:00:00 2001 From: David Refoua Date: Sun, 12 Apr 2026 03:42:33 +0330 Subject: [PATCH] parse entire JSON string at once Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ae3d8b8..2434f6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,7 +86,7 @@ jobs: "@ # Read vendor sources.json and add to summary - $vendorSources = Get-Content "vendor/sources.json" | ConvertFrom-Json + $vendorSources = Get-Content -Raw "vendor/sources.json" | ConvertFrom-Json if ($vendorSources.Count -eq 0) { $summary += "`n| _No vendor packages found_ | |" } else {