From 4082d847e9d36cd0e380819428bde3817057a672 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Fri, 23 Jan 2026 20:12:23 +0300 Subject: [PATCH] fix: replace deprecated set-output with GITHUB_OUTPUT --- .github/workflows/pr_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_workflow.yml b/.github/workflows/pr_workflow.yml index d33fd77..2820bfd 100644 --- a/.github/workflows/pr_workflow.yml +++ b/.github/workflows/pr_workflow.yml @@ -56,7 +56,7 @@ jobs: run: | VERSION=${{ github.head_ref }} VERSION=${VERSION/hotfix/rc} # Replace "hotfix" with "rc" - echo "::set-output name=version::${VERSION#*rc/}" + echo "version=${VERSION#*rc/}" >> $GITHUB_OUTPUT - uses: tibdex/github-app-token@v1 id: generate-token