From 342a7461f51ed99faf0e53d77a280d41193318bf Mon Sep 17 00:00:00 2001 From: "Charlton, Scott R" Date: Mon, 11 Dec 2023 10:55:08 -0700 Subject: [PATCH] Add apt-get update to linux build --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index faf56ad0..8fe128e8 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -47,7 +47,7 @@ jobs: - name: Install ninja valgrind (Linux) if: runner.os == 'Linux' - run: sudo apt-get install -y ninja-build valgrind + run: sudo apt-get update && sudo apt-get install -y ninja-build valgrind - name: Install ninja (macOS) if: runner.os == 'macOS'