From 4a1ec6fce48708d1f1e08c86fddc2a4f48dfcf7e Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Wed, 8 Feb 2023 17:09:33 +0100 Subject: [PATCH] Update github actions to Ubuntu 22.04 and OpenSSL3 --- scripts/continuous-integration/docker/install-dependencies.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/continuous-integration/docker/install-dependencies.sh b/scripts/continuous-integration/docker/install-dependencies.sh index 1dcd7e9..21db12b 100644 --- a/scripts/continuous-integration/docker/install-dependencies.sh +++ b/scripts/continuous-integration/docker/install-dependencies.sh @@ -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"