Skip to content

Commit

Permalink
chore(ci): Replace deprecated command with environment file (#6427)
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
jongwooo authored Nov 13, 2023
1 parent ac00413 commit 9d22ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/turborepo-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 9d22ebe

Please sign in to comment.