Update github actions to Ubuntu 22.04 and OpenSSL3

This commit is contained in:
Andrea Cavalli 2023-02-08 17:09:33 +01:00
parent b218ca97da
commit 4a1ec6fce4
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ if [ -n "${CROSS_BUILD_DEPS_DIR}" ]; then
dpkg -x "$LIBSSL_DEB" "$CROSS_BUILD_DEPS_DIR"
else
# LibSSL
apt-get download "libssl:${CPU_ARCH_DPKG}"
LIBSSL_DEB=$(find . -name "libssl_*.deb")
apt-get download "libssl1.1:${CPU_ARCH_DPKG}"
LIBSSL_DEB=$(find . -name "libssl1.1_*.deb")
dpkg -x "$LIBSSL_DEB" "$CROSS_BUILD_DEPS_DIR"
fi
rm "$LIBSSL_DEB"