From ed323c37bd36daa482160b27cb76b8d8d3982672 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Tue, 31 Dec 2024 09:52:02 -0500 Subject: [PATCH] fix: updates Signed-off-by: Devin Buhl --- .github/workflows/pre-pull-images.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-pull-images.yaml b/.github/workflows/pre-pull-images.yaml index 606850efd903b..44c66e50dba86 100644 --- a/.github/workflows/pre-pull-images.yaml +++ b/.github/workflows/pre-pull-images.yaml @@ -146,8 +146,8 @@ jobs: shell: bash run: | images=$(jq --null-input \ - --argjson f1 "${{ fromJson(needs.default-images.outputs.images) }}" \ - --argjson f2 "${{ fromJson(needs.pull-request-images.outputs.images) }}" \ + --argjson f1 "'${{ needs.default-images.outputs.images }}'" \ + --argjson f2 "'${{ needs.pull-request-images.outputs.images }}'" \ '($f1 - $f2) + ($f2 - $f1)' \ ) echo "images=${images}" >> $GITHUB_OUTPUT