Update deprecated set-output command #58 (#59)

This commit is contained in:
Andrew Walsh 2022-10-30 11:49:55 -07:00 committed by GitHub
parent fc1d3efd6e
commit 677fd9bce5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,6 +58,6 @@ runs:
"${{ steps.load-cache.outputs.cache-hit }}" \
${{ inputs.packages }}
function create_list { local list=$(cat ~/cache-apt-pkgs/manifest_${1}.log | tr '\n' ','); echo ${list:0:-1}; };
echo "::set-output name=package-version-list::$(create_list main)"
echo "::set-output name=all-package-version-list::$(create_list all)"
echo "package-version-list=$(create_list main)" >> $GITHUB_OUTPUT
echo "all-package-version-list=$(create_list all)" >> $GITHUB_OUTPUT
shell: bash