From 38dbd664742a5e5eacaa0ce48a7ec267336f1803 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 12 Apr 2023 11:48:28 +0100 Subject: [PATCH] Fix github actions deprecations warnings (#25096) --- .github/workflows/triage-move-review-requests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/triage-move-review-requests.yml b/.github/workflows/triage-move-review-requests.yml index d47904a571..36b5ad17ec 100644 --- a/.github/workflows/triage-move-review-requests.yml +++ b/.github/workflows/triage-move-review-requests.yml @@ -43,11 +43,11 @@ jobs: # If either a reviewer matches a team member, or a team matches our team, say "true" if [ $(join /tmp/team_members.txt /tmp/reviewers.txt | wc -l) != 0 ]; then - echo "::set-output name=match::true" + echo "match=true" >> $GITHUB_OUTPUT elif [ $(join /tmp/team.txt /tmp/team_reviewers.txt | wc -l) != 0 ]; then - echo "::set-output name=match::true" + echo "match=true" >> $GITHUB_OUTPUT else - echo "::set-output name=match::false" + echo "match=false" >> $GITHUB_OUTPUT fi env: TEAM: "design" @@ -110,11 +110,11 @@ jobs: # If either a reviewer matches a team member, or a team matches our team, say "true" if [ $(join /tmp/team_members.txt /tmp/reviewers.txt | wc -l) != 0 ]; then - echo "::set-output name=match::true" + echo "match=true" >> $GITHUB_OUTPUT elif [ $(join /tmp/team.txt /tmp/team_reviewers.txt | wc -l) != 0 ]; then - echo "::set-output name=match::true" + echo "match=true" >> $GITHUB_OUTPUT else - echo "::set-output name=match::false" + echo "match=false" >> $GITHUB_OUTPUT fi env: TEAM: "product"