From: Jérôme Benoit Date: Fri, 14 Jul 2023 14:55:53 +0000 (+0200) Subject: build(ci): silence deprecation warning X-Git-Tag: v1.2.18~36 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=35920236aa7d60ceb1b73f4709031b84c375722b;p=e-mobility-charging-stations-simulator.git build(ci): silence deprecation warning Signed-off-by: Jérôme Benoit --- diff --git a/.github/workflows/clone-count.yml b/.github/workflows/clone-count.yml index b7898a8f..e8595f88 100644 --- a/.github/workflows/clone-count.yml +++ b/.github/workflows/clone-count.yml @@ -28,13 +28,13 @@ jobs: if gh secret list | grep -q "GIST_ID" then echo "GIST_ID found" - echo ::set-output name=GIST::${{ secrets.GIST_ID }} + echo "GIST=${{ secrets.GIST_ID }}" >> $GITHUB_OUTPUT curl https://gist.githubusercontent.com/${{ github.actor }}/${{ secrets.GIST_ID }}/raw/clone.json > clone_before.json if cat clone_before.json | grep '404: Not Found'; then echo "GIST_ID not valid anymore. Creating another gist..." gist_id=$(gh gist create clone.json | awk -F / '{print $NF}') echo $gist_id | gh secret set GIST_ID - echo ::set-output name=GIST::$gist_id + echo "GIST=${gist_id}" >> $GITHUB_OUTPUT cp clone.json clone_before.json git rm --ignore-unmatch CLONE.md fi @@ -42,7 +42,7 @@ jobs: echo "GIST_ID not found. Creating a gist..." gist_id=$(gh gist create clone.json | awk -F / '{print $NF}') echo $gist_id | gh secret set GIST_ID - echo ::set-output name=GIST::$gist_id + echo "GIST=${gist_id}" >> $GITHUB_OUTPUT cp clone.json clone_before.json fi