spring-session-bom
spring-session-bom copied to clipboard
Replace deprecated command with environment file
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