ArtemSBulgakov / buildozer-action

GitHub Action to build your Python application with Buildozer
MIT License
75 stars 70 forks source link

Update entrypoint.py to use GITHUB_OUTPUT environment variable #38

Closed tmolitor-stud-tu closed 5 months ago

tmolitor-stud-tu commented 5 months ago

set-output is deprecated and was replaced by the GITHUB_OUTPUT environment variable.

This fixes the following warning when using this action:

The set-output command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

ArtemSBulgakov commented 5 months ago

Thanks for your PR!

Looks good.