From 298a67d29b48e3d388a7d067c3dc54a8a8396f38 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Sat, 3 Jun 2023 21:11:29 -0700 Subject: [PATCH] Fix apt-get errors in CI --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fec61b3..2ac3ce1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v2 - name: Install packages - run: sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc libiberty-dev + run: sudo apt-get update -y && sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc libiberty-dev - name: Install toolchain uses: actions-rs/toolchain@v1