From 93212fa87834d4d57940cb5debc0ede08c641e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Chapron?= <34628915+sc979@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:02:18 +0200 Subject: [PATCH] fix quotes (#103) --- .github/workflows/get-version.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/get-version.yml b/.github/workflows/get-version.yml index 30658f0196..c22184a9e6 100644 --- a/.github/workflows/get-version.yml +++ b/.github/workflows/get-version.yml @@ -69,11 +69,11 @@ jobs: shell: bash - name: DEBUG is my internal secret safe - run: echo ${{ secrets.my_internal_secret }} | sed 's/./& /g' + run: echo "${{ secrets.my_internal_secret }}" | sed 's/./& /g' shell: bash - name: DEBUG is my shared secret safe - run: echo ${{ secrets.my_shared_secret }} | sed 's/./& /g' + run: echo "${{ secrets.my_shared_secret }}" | sed 's/./& /g' shell: bash - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7