Skip to content

Commit bd410a2

Browse files
authored
Replace apt-fast with apt-get (#83)
`apt-fast` was removed from GitHub with Ubuntu 24.04: - actions/runner-images#10003 For compatibility, switch back to `apt-get`.
1 parent 5d5dc51 commit bd410a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
if: runner.os == 'Linux' && matrix.target.cpu == 'i386'
6969
run: |
7070
sudo dpkg --add-architecture i386
71-
sudo apt-fast update -qq
72-
sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \
71+
sudo apt-get update -qq
72+
sudo DEBIAN_FRONTEND='noninteractive' apt-get install \
7373
--no-install-recommends -yq gcc-multilib g++-multilib \
7474
libssl-dev:i386
7575
mkdir -p external/bin

0 commit comments

Comments
 (0)