Save State command to be deprecated
rtalintyre opened this issue · 6 comments
When running the action in our pipeline we receive the following message in the logs:
Warning: The save-state
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/
Does this command need to be updated?
@rtalintyre Hey Robert, thanks for filing this issue -- this is a strange warning to receive during the execution of this GitHub Action since it's not using save-state
command (or set-output
, which is also mentioned) anywhere. Since this is a composite action that does reference other actions, it's possible that another action we're referencing is using save-state
and having this warning propagated.
When you have the chance, would you mind providing some context around where in the logs this warning is being written? I'm curious which commands are being ran before and after it so we can pinpoint the culprit. Thanks in advance!
@rtalintyre Perfect, thanks Robert -- this confirms it's coming from the Docker GitHub Action we're using for authentication, which we have a pull request open for to resolve. Let me check back on this PR and why it hasn't been merged yet.
@cormacpayne - looks like an approving review is needed to merge the PR. Thank you for the support - looks like bumping the docker version will resolve this issue 💯
@rtalintyre OK this has been merged and v1
has been updated to reflect this -- we should be good to go!
Working great! @cormacpayne good job!