From f0f21c0ba6f7c766a9b4a51a4f93d787aa2b0793 Mon Sep 17 00:00:00 2001 From: David Sisson Date: Tue, 20 Feb 2024 15:09:09 -0800 Subject: [PATCH] Switch to using apt-get directly (Linux only). --- .github/workflows/test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f2a8694..7ae15c5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,9 +31,8 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install dependencies - uses: awalsh128/cache-apt-pkgs-action@latest - with: - packages: libprotobuf-c-dev + run: | + sudo apt-get install libprotobuf-c-dev - name: Build Substrait planloader library run: | cd ${{ github.workspace }}/third_party/substrait-cpp