Skip to content

Commit

Permalink
Replace apt-fast with apt-get (#39)
Browse files Browse the repository at this point in the history
`apt-fast` was removed from GitHub with Ubuntu 24.04:

- actions/runner-images#10003

For compatibility, switch back to `apt-get`.
  • Loading branch information
etan-status authored Oct 15, 2024
1 parent e8fc71a commit 8bb1acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8bb1acb

Please sign in to comment.