From 21f5b6bfb7ccc0476c7ea40086998cf93f13e1e3 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Wed, 4 Jan 2023 00:32:02 -0600 Subject: [PATCH] GHA: Hacktoberfest CI: Update deprecated 'set-output' command Closes #10221 --- .github/workflows/hacktoberfest-accepted.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hacktoberfest-accepted.yml b/.github/workflows/hacktoberfest-accepted.yml index 2765013a4a..c78ff4e301 100644 --- a/.github/workflows/hacktoberfest-accepted.yml +++ b/.github/workflows/hacktoberfest-accepted.yml @@ -32,8 +32,8 @@ jobs: - name: Check whether repo participates in Hacktoberfest run: | - gh config set prompt disabled && echo "::set-output name=label::$( - gh repo view --json repositoryTopics --jq '.repositoryTopics[].name' | grep '^hacktoberfest$')" + gh config set prompt disabled && echo "label=$( + gh repo view --json repositoryTopics --jq '.repositoryTopics[].name' | grep '^hacktoberfest$')" >> $GITHUB_OUTPUT id: check env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}