From 9faabb2309ee12ed68e2f525eb339a85854da808 Mon Sep 17 00:00:00 2001 From: Parth Nobel Date: Fri, 17 Apr 2026 00:17:08 -0700 Subject: [PATCH] Replace deprecated set-output usage --- .github/workflows/pr_benchmark_comment.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr_benchmark_comment.yml b/.github/workflows/pr_benchmark_comment.yml index c5b8660..c9f2598 100644 --- a/.github/workflows/pr_benchmark_comment.yml +++ b/.github/workflows/pr_benchmark_comment.yml @@ -36,16 +36,15 @@ jobs: - id: get-comment-body run: | - body="$(cat asv_compare.log)" - body="${body//'%'/'%25'}" - body="${body//$'\n'/'%0A'}" - body="${body//$'\r'/'%0D'}" - echo "::set-output name=body::$body" + { + echo 'body<> "$GITHUB_OUTPUT" - id: get-pr-number run: | - number="$(cat pr_number)" - echo "::set-output name=number::$number" + echo "number=$(cat pr_number)" >> "$GITHUB_OUTPUT" - name: Find Comment uses: peter-evans/find-comment@v4