Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

chore: Replace deprecated command with environment file #636

Closed
wants to merge 1 commit into from
Closed

chore: Replace deprecated command with environment file #636

wants to merge 1 commit into from

Conversation

jongwooo
Copy link

Description

Resolve #635

Update workflows to use environment file instead of deprecated set-output command.
For more information, see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

I found the workflow files that use set-output command through the following command:

$ find . -name '*.yml' -o -name '*.yaml' | xargs egrep '\bset-output\b'

AS-IS

echo "::set-output name=latestRelease::$LATEST_RELEASE"

TO-BE

echo "latestRelease=$LATEST_RELEASE" >> $GITHUB_OUTPUT

Signed-off-by: jongwooo <jongwooo.han@gmail.com>
@jongwooo jongwooo closed this by deleting the head repository Dec 21, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Replace deprecated set-output command with environment file
1 participant