We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get-releasenote
When you run the aio-libs/get-releasenote@v1.4.5 action, Github adds this warning (repeated three times):
aio-libs/get-releasenote@v1.4.5
Warning: 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/
set-output
As the linked blog page states, the deprecation has been postponed but I'm assuming it's not a stay of execution.
To fix the warning, replace printing with appending to the os.environ.get("GITHUB_OUTPUT") filename, if it exists.
os.environ.get("GITHUB_OUTPUT")
The text was updated successfully, but these errors were encountered:
Thanks for the reminder; I'll prepare a fix
Sorry, something went wrong.
No branches or pull requests
When you run the
aio-libs/get-releasenote@v1.4.5
action, Github adds this warning (repeated three times):As the linked blog page states, the deprecation has been postponed but I'm assuming it's not a stay of execution.
To fix the warning, replace printing with appending to the
os.environ.get("GITHUB_OUTPUT")
filename, if it exists.The text was updated successfully, but these errors were encountered: