From 877789b2f66a5ec5090eda9e3fbac47a8ddedb49 Mon Sep 17 00:00:00 2001 From: Ryan Liptak Date: Mon, 7 Mar 2022 16:29:30 -0800 Subject: [PATCH] CI: Run `update` before `install` for valgrind Was hitting a 404 error when installing valgrind (the libc6-dbg dependency specifically), this might fix it. --- .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 67d53d42..2a33dd8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,9 @@ jobs: with: submodules: recursive - name: Install Valgrind - run: sudo apt-get install -y valgrind + run: | + sudo apt-get update + sudo apt-get install -y valgrind - name: Build run: make - name: Test