Skip to content
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

Switch where variable output is being saved in check #54

Merged
merged 1 commit into from
Oct 5, 2023

Conversation

coatless
Copy link
Collaborator

@coatless coatless commented Oct 5, 2023

Address the deprecation 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

Pattern:

From:

- name: Set output
run: echo "::set-output name={name}::{value}"

To:

- name: Set output
run: echo "{name}={value}" >> $GITHUB_OUTPUT

More details:

https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions

@coatless coatless merged commit 5b89a5a into master Oct 5, 2023
5 checks passed
@coatless coatless deleted the update-set-output-option branch October 5, 2023 01:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant