From 1b5e00f9c78bdd4325d72df187efff61f71223de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Tue, 15 Nov 2022 02:35:37 +0100 Subject: [PATCH] ci: remove set-output from unstable release workflow --- .github/workflows/unstable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unstable.yml b/.github/workflows/unstable.yml index c245c8de6ca..a2d987512a5 100644 --- a/.github/workflows/unstable.yml +++ b/.github/workflows/unstable.yml @@ -22,11 +22,11 @@ jobs: - name: Get current date ⌛ id: date - run: echo "::set-output name=date::$(date +'%Y-%m-%d')" + run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT - name: Get commit hash ⚙️ id: sha - run: echo "::set-output name=sha::${GITHUB_SHA::7}" + run: echo "sha=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT - name: Configure QEMU ⚙️ uses: docker/setup-qemu-action@v2.1.0