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
set-output
GITHUB_OUTPUT
First of all, thank you for this action! It's been very useful.
I noticed while using it that it's using set-output internally, which has been deprecated by GitHub:
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/
GitHub's encouraged alternative is to use the $GITHUB_OUTPUT file, e.g.:
$GITHUB_OUTPUT
echo "foo=bar" >> "${GITHUB_OUTPUT}"
I'm not super familiar with Go, but I suspect you're using the deprecated set-output command indirectly through this line:
rss-issues-action/main.go
Line 242 in 74cacbc
...and that upgrading to 1.1.0 or newer will fix the underlying implementation, per sethvargo/go-githubactions#49
1.1.0
The text was updated successfully, but these errors were encountered:
(I'm happy to send a PR for the above, as well. Just let me know!)
Sorry, something went wrong.
Hi @woodruffw Thanks for your issue, if you want to make a PR I will be happy to review.
Opened #43 for this, thanks!
Successfully merging a pull request may close this issue.
First of all, thank you for this action! It's been very useful.
I noticed while using it that it's using
set-output
internally, which has been deprecated by GitHub:GitHub's encouraged alternative is to use the
$GITHUB_OUTPUT
file, e.g.:I'm not super familiar with Go, but I suspect you're using the deprecated
set-output
command indirectly through this line:rss-issues-action/main.go
Line 242 in 74cacbc
...and that upgrading to
1.1.0
or newer will fix the underlying implementation, per sethvargo/go-githubactions#49The text was updated successfully, but these errors were encountered: