From 27c924746b18de7f753faae273265919f43549c1 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Tue, 8 Mar 2022 19:09:56 +0100 Subject: [PATCH] CI: run `apt-get update` before installing valgrind --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1808e2e..c59b01af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -425,7 +425,9 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Install - run: sudo apt-get install -y valgrind ninja-build + run: | + sudo apt-get update + sudo apt-get install -y valgrind ninja-build - name: Checkout uses: actions/checkout@v2 - name: Configure