From 6cd20344d9f8c2833b2a0192d183d0f2d50a603e Mon Sep 17 00:00:00 2001 From: 0o-de-lally <1364012+0o-de-lally@users.noreply.github.com> Date: Wed, 14 Aug 2024 17:42:55 -0400 Subject: [PATCH] install apt deps --- .github/workflows/nextest-build.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/nextest-build.yaml b/.github/workflows/nextest-build.yaml index c2d7bcd51..7d6190380 100644 --- a/.github/workflows/nextest-build.yaml +++ b/.github/workflows/nextest-build.yaml @@ -17,6 +17,11 @@ jobs: name: Build test artifacts runs-on: ubuntu-latest steps: + - uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: build-essential ca-certificates clang curl git libpq-dev libssl-dev pkg-config lsof lld + version: 1.0 + - uses: actions/checkout@v4 with: # By default actions/checkout checks out a merge commit. Check out the PR head instead.