From 4e02b222cda02194ce70f3739d43c5cac4028a00 Mon Sep 17 00:00:00 2001 From: Marvin Pinto Date: Tue, 27 Feb 2024 17:24:01 -0500 Subject: [PATCH] Fix for the deprecated set-output command --- .github/workflows/latest.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/latest.yml b/.github/workflows/latest.yml index dd5c7de..c7be42c 100644 --- a/.github/workflows/latest.yml +++ b/.github/workflows/latest.yml @@ -40,7 +40,7 @@ jobs: - name: "Retrieve the short SHA" id: "sha" - run: echo "::set-output name=value::$(echo ${GITHUB_SHA::8})" + run: echo "value=$(echo ${GITHUB_SHA::8})" >> "$GITHUB_OUTPUT" - name: "Set up QEMU" uses: "docker/setup-qemu-action@v3" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37ff68c..067909d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: - name: "Retrieve the short SHA" id: "sha" - run: echo "::set-output name=value::$(echo ${GITHUB_SHA::8})" + run: echo "value=$(echo ${GITHUB_SHA::8})" >> "$GITHUB_OUTPUT" - name: "Set up QEMU" uses: "docker/setup-qemu-action@v3"