From 9d22ebe34a109dc52be23da005a3c634d04eb218 Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Tue, 14 Nov 2023 05:21:55 +0900 Subject: [PATCH] chore(ci): Replace deprecated command with environment file (#6427) Update `.github/workflows/turborepo-release.yml` to use environment file instead of deprecated `set-output` command. For more information, see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/turborepo-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/turborepo-release.yml b/.github/workflows/turborepo-release.yml index 9fb402c4534e0..5168f5d52078a 100644 --- a/.github/workflows/turborepo-release.yml +++ b/.github/workflows/turborepo-release.yml @@ -379,7 +379,7 @@ jobs: ref: ${{ needs.stage.outputs.stage-branch }} - name: Get version id: getVersion - run: echo ::set-output name=version::$(head -n 1 version.txt) + run: echo "version=$(head -n 1 version.txt)" >> $GITHUB_OUTPUT - name: Create pull request uses: thomaseizinger/create-pull-request@master if: ${{ !inputs.dry_run }}