picoe / Eto

Cross platform GUI framework for desktop and mobile applications in .NET
Other
3.53k stars 318 forks source link

Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated #2603

Closed arunsathiya closed 6 months ago

arunsathiya commented 6 months ago

save-state and set-output commands used in GitHub Actions are deprecated and GitHub recommends using environment files.

This PR updates the usage of set-output to $GITHUB_OUTPUT

Instructions for envvar usage from GitHub docs:

https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter

cwensley commented 6 months ago

Nice one! Thanks for the fix up.