From 9bdbec73d4ea10c7f7915f4171ce27f37ccfe658 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 4 Jan 2022 17:50:43 -0500 Subject: [PATCH] escape echo of changed files in Action (#24058) * escape echo of changed files in Action * escaped * escaped (2) * temporary * reset temporary tests --- .github/workflows/link-check-all.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link-check-all.yml b/.github/workflows/link-check-all.yml index 03e3817aae..77ed0c2736 100644 --- a/.github/workflows/link-check-all.yml +++ b/.github/workflows/link-check-all.yml @@ -46,7 +46,7 @@ jobs: output: ' ' - name: Insight into changed files run: | - echo ${{ steps.get_diff_files.outputs.files }} + echo "${{ steps.get_diff_files.outputs.files }}" - name: Link check (warnings, changed files) run: | @@ -56,7 +56,7 @@ jobs: --check-anchors \ --check-images \ --verbose \ - ${{ steps.get_diff_files.outputs.files }} + "${{ steps.get_diff_files.outputs.files }}" - name: Link check (critical, all files) run: |