Closed thetredev closed 1 year ago
GitHub has deprecated the use of set-output in Actions: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands
set-output
This PR fixes that by using the new echo "{name}={value}" >> $GITHUB_OUTPUT syntax instead of set-output.
echo "{name}={value}" >> $GITHUB_OUTPUT
Also, refer to the Annotations of the latest release of this repo: https://github.com/fabianishere/pve-edge-kernel/actions/runs/3653076106
Annotations
Thanks @thetredev!
@fabianishere you're welcome :)
GitHub has deprecated the use of
set-output
in Actions: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commandsThis PR fixes that by using the new
echo "{name}={value}" >> $GITHUB_OUTPUT
syntax instead ofset-output
.