From ca053132009d44cb4a99a596126afd12793a66b7 Mon Sep 17 00:00:00 2001 From: Denis Biryukov Date: Thu, 21 Mar 2024 15:45:09 +0000 Subject: [PATCH] add sudo before valgrind install in ci --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b258e5d17..e147d11856 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,7 +104,7 @@ jobs: - name: Install valgrind if: ${{ matrix.os == 'ubuntu-latest' }} - run: apt-get install -y valgrind + run: sudo apt-get install -y valgrind shell: bash - name: Run memory leaks check