From 8bb1acbaa4b86eb866145b0d468eff64a57d1897 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Tue, 15 Oct 2024 16:20:40 +0200 Subject: [PATCH] Replace `apt-fast` with `apt-get` (#39) `apt-fast` was removed from GitHub with Ubuntu 24.04: - https://github.com/actions/runner-images/issues/10003 For compatibility, switch back to `apt-get`. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c2ed7d..f005186 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,8 +68,8 @@ jobs: if: runner.os == 'Linux' && matrix.target.cpu == 'i386' run: | sudo dpkg --add-architecture i386 - sudo apt-fast update -qq - sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \ + sudo apt-get update -qq + sudo DEBIAN_FRONTEND='noninteractive' apt-get install \ --no-install-recommends -yq gcc-multilib g++-multilib \ libssl-dev:i386 mkdir -p external/bin