ci: Use env file instead of deprecated workflow cmd

https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This commit is contained in:
Antoine Cotten 2022-11-17 16:57:40 +01:00
parent 54d3f71799
commit eba8d3837d
No known key found for this signature in database
GPG Key ID: 94637E68D4A79DD0
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ jobs:
if [[ ${git_status} ]]; then if [[ ${git_status} ]]; then
echo -e 'Changes to be committed:\n' echo -e 'Changes to be committed:\n'
echo "${git_status}" echo "${git_status}"
echo '::set-output name=has_changes::true' echo 'has_changes=true' >>"$GITHUB_OUTPUT"
fi fi
- name: Impersonate update bot - name: Impersonate update bot