From cbf0334762b75f9508bf0c8aa1a17938c4b18da2 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Thu, 18 Apr 2024 17:30:53 -0700 Subject: [PATCH] misc: Fix jq install for testlib-quick-matrix (#1038) --- .github/workflows/ci-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml index efe9081f3f..55b10dbb6b 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -70,10 +70,10 @@ jobs: steps: - uses: actions/checkout@v4 - # Unfortunately the 'ubunutu-latest' image doesn't have jq installed. - # We therefore need to install it as a step here. + # Unfortunately the image doesn't have jq installed. + # We therefore need to install it as a step here. - name: Install jq - run: apt install -y jq + run: apt update && apt install -y jq - name: Get directories for testlib-quick working-directory: ${{ github.workspace }}/tests