From 889776abbbf387a3a07746960eb75dc6c2e5fc99 Mon Sep 17 00:00:00 2001 From: Michal Rostecki Date: Tue, 11 Jun 2024 16:49:59 +0200 Subject: [PATCH] ci: Call `apt-get update` before installing any packages We noticed CI failures related to lack of ability to fetch packages. Refreshing the repository metadata with `apt-get update` should fix that. --- .github/workflows/integration.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 0ac32e07..1c9b4563 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -32,7 +32,8 @@ jobs: - name: Install dependencies if: endsWith(matrix.platform.target, 'musl') run: | - sudo apt install -y qemu-system + sudo apt-get update + sudo apt-get install -y qemu-system - name: Install Rust toolchain (stable) uses: dtolnay/rust-toolchain@stable