From ff6ce90fb5a39388318166525a863a33e296c957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Tue, 12 Mar 2024 15:54:42 +0000 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6649835..c64f9d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,14 +25,15 @@ jobs: docker_image: graphcore/poplar:3.2.0-ubuntu-20.04-20230314 build_docs: false steps: - - name: "Install g++ and git" - # g++ is needed to build the wrapper, git to publish the docs. + - name: "Install, g++, git, jq" + # g++ is needed to build the wrapper, git to publish the docs, jq for + # the `julia-actions/cache` workflow run: | apt-get update -y - apt-get install -y g++ git + apt-get install -y g++ git jq env: DEBIAN_FRONTEND: noninteractive - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "Declare git repo safe" # In the docker container the repo is owned by 1001:123, causing the # following error when running git commands: