spring-session-bom icon indicating copy to clipboard operation
spring-session-bom copied to clipboard

Replace deprecated command with environment file

Open jongwooo opened this issue 1 year ago • 0 comments

Description

Closes #224

Update .github/workflows/continuous-integration-workflow.yml 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 file that use set-output command through the following command:

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

AS-IS

run: echo "::set-output name=runjobs::true"

TO-BE

run: echo "runjobs=true" >> $GITHUB_OUTPUT

jongwooo avatar Sep 03 '23 05:09 jongwooo