From 1e6cbb1750114eae51b561f5f7907e6b88a9a038 Mon Sep 17 00:00:00 2001 From: nicholasmhughes Date: Fri, 29 Dec 2023 16:12:12 -0500 Subject: [PATCH] Revert "stop double-jsoning the changed file output" This reverts commit 2cabcba0d7b497ce5a71dc49a8d7b65b087c1f51. --- .github/workflows/get-changed-files.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/get-changed-files.yml b/.github/workflows/get-changed-files.yml index d4930e5..84aafa9 100644 --- a/.github/workflows/get-changed-files.yml +++ b/.github/workflows/get-changed-files.yml @@ -13,7 +13,7 @@ jobs: contents: read # for dorny/paths-filter to fetch a list of changed files pull-requests: read # for dorny/paths-filter to read pull requests outputs: - changed-files: ${{ steps.changed-files.outputs }} + changed-files: ${{ toJSON(steps.changed-files.outputs) }} steps: - uses: actions/checkout@v4 @@ -32,4 +32,4 @@ jobs: - '**' - name: Echo Changed Files Output - run: echo "${{ steps.changed-files.outputs }}" + run: echo "${{ toJSON(steps.changed-files.outputs) }}"