Skip to content

Commit

Permalink
Remove usage of deprecated set-output action (#27)
Browse files Browse the repository at this point in the history
## Summary:

As I was fixing our mobile actions to use node16 everywhere, I also noticed a deprecation warning for using `::set-output` (more info [here](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/)). 

This PR updates this repo to use the new syntax.

Issue: "none"

## Test plan:

Review it visually. I'll update the mobile repo to start using this on the branch to test.

Author: jeremywiebe

Reviewers: jandrade, jaredly, jeremywiebe, lillialexis

Required Reviewers:

Approved By: jaredly

Checks: ✅ Jest Coverage, ✅ autofix, ✅ lint_and_unit

Pull Request URL: #27
  • Loading branch information
jeremywiebe authored Dec 5, 2022
1 parent e0bdb82 commit d6f86e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
then
echo "::set-output name=changed::true"
echo "name=changed::true" >> $GITHUB_OUTPUT
exit 0
fi
echo "::set-output name=changed::false"
echo "name=changed::false" >> $GITHUB_OUTPUT
exit 0
- run: yarn
Expand Down

0 comments on commit d6f86e2

Please sign in to comment.