From 07fe4f5c73a7d2ab39d081ca515268609f0cc755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Fri, 4 Nov 2022 23:34:14 +0100 Subject: [PATCH] build: change set-output to env vars #348 --- .github/actions/check_milestone/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/check_milestone/action.yaml b/.github/actions/check_milestone/action.yaml index 7667376ef82..0337b7723e3 100644 --- a/.github/actions/check_milestone/action.yaml +++ b/.github/actions/check_milestone/action.yaml @@ -56,9 +56,9 @@ runs: shell: bash run: | if [ "${{ fromJSON(steps.closed_issues.outputs.data).search.issueCount > 0 && fromJSON(steps.open_issues.outputs.data).search.issueCount == 0 && steps.unique_tag.outputs.exists == 'false' }}" = "true" ]; then - echo "::set-output name=outcome::success" + echo "outcome=success" >> $GITHUB_OUTPUT else - echo "::set-output name=outcome::failure" + echo "outcome=failure" >> $GITHUB_OUTPUT fi - name: Log results and exit