-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Replace deprecated ::set-output
#26
Conversation
@@ -26,7 +26,7 @@ jobs: | |||
run: | | |||
version=0.0.$GITHUB_RUN_NUMBER | |||
echo "ThisBuild / version := \"$version\"" > version.sbt | |||
echo "::set-output name=version::$version" | |||
echo "version=$version" >> $GITHUB_OUTPUT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we even need this in the 1st place? I don't see where it's used. I may be missing something obvious. It's been a long time since I wrote this!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is indeed a good question.
The CI is failing but probably not because of your changes. I'll have a look in the coming days. |
Thank you. |
It's actually caused by the fact that workflow on your branch do not have access to secrets we use to publish to Sonatype. I'm rebasing and merging your PR. Thanks! |
As per the deprecation warning and explanation at https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: Dominik Gedon <[email protected]>
🤔 What's changed?
As per the deprecation warning and explanation at https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
⚡️ What's your motivation?
See cucumber/common#2150
🏷️ What kind of change is this?
♻️ Anything particular you want feedback on?
Is the changelog entry fine this way?
📋 Checklist:
This text was originally generated from a template, then edited by hand. You can modify the template here.