-
Notifications
You must be signed in to change notification settings - Fork 478
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
Set-output command is deprecated #601
Comments
related issue on the dependency: actions/toolkit#1218 |
I've left a comment in that issue, Hmm, seems that the dependency is up to date, investigating... |
Turns out this is fixed in main and just not released. Switching to |
|
Describe the bug
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/
Expected Behavior
I am expecting echo
"environment=development" >> $GITHUB_OUTPUT
instead ofecho "::set-output name=environment::development"
.Current Behavior
Current behavior is using old
set-output
, for exampleecho "::set-output name=environment::development"
Reproduction Steps
Using
aws-actions/configure-aws-credentials@v1
in our GitHub Actions script.Possible Solution
Use
"environment=development" >> $GITHUB_OUTPUT
instead ofecho "::set-output name=environment::development"
.Additional Information/Context
No response
The text was updated successfully, but these errors were encountered: