From ae8eb6b440d9bb71f06d39ef5106b43ea96cc840 Mon Sep 17 00:00:00 2001 From: Tsvi Zandany Date: Sun, 21 Jul 2024 17:47:51 -0500 Subject: [PATCH] chore: Install JQ on the container --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcc1b43..42b806d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -165,6 +165,8 @@ jobs: restore-keys: ${{ runner.os }}-junit- # key for restoring the cache if no exact match is found # In this step, we are downloading the latest artifact from the build job and storing it in the container - run: | + # Install JQ on the container + apt-get update && apt-get install -y jq # Download the latest tests results artifact number from the GitHub API using jq to parse the JSON response curl \ -H "Accept: application/vnd.github+json" \