Fix deprecated set-output

This commit is contained in:
Dennis Heinze 2023-05-22 08:44:33 +02:00
parent bd887fa3fc
commit e2515272f8
No known key found for this signature in database
GPG key ID: D74FB5DB42CAD9A1
11 changed files with 29 additions and 29 deletions
build/targets

View file

@ -51,9 +51,9 @@ main() {
cp "${BUILD_DIRECTORY}/gdb_build/gdbserver/gdbserver" "${OUTPUT_DIRECTORY}/gdbserver${GDBSERVER_VERSION}"
echo "[+] Finished building GDB ${CURRENT_ARCH}"
echo ::set-output name=PACKAGED_NAME::"gdb${GDB_VERSION}"
echo ::set-output name=PACKAGED_NAME_PATH::"/output/*"
echo ::set-output name=PACKAGED_VERSION::"${version_number}"
echo "PACKAGED_NAME=gdb${GDB_VERSION}" >> $GITHUB_OUTPUT
echo "PACKAGED_NAME_PATH=/output/*" >> $GITHUB_OUTPUT
echo "PACKAGED_VERSION=${version_number}" >> $GITHUB_OUTPUT
}
main