]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA: Hacktoberfest CI: Update deprecated 'set-output' command
authorandy5995 <arch_stanton5995@protonmail.com>
Wed, 4 Jan 2023 06:32:02 +0000 (00:32 -0600)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 5 Jan 2023 09:12:57 +0000 (10:12 +0100)
Closes #10221

.github/workflows/hacktoberfest-accepted.yml

index 2765013a4aa8d205d38172811bb01efd56ff91d7..c78ff4e3010a88aa1c6b5eb5a8e5fd37fadcd02b 100644 (file)
@@ -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 }}