aormsby / Fork-Sync-With-Upstream-action

An action to automatically update your fork with new commits from the upstream repo
MIT License
258 stars 70 forks source link

Update of the `get_updates.sh` to get rid of deprecated `set-output` #57

Closed PeterVoronov closed 2 years ago

PeterVoronov commented 2 years ago

In reference with https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ the

echo "::set-output name=has_new_commits::${HAS_NEW_COMMITS}"

replaced by

echo "has_new_commits=${HAS_NEW_COMMITS}" >> $GITHUB_OUTPUT