Skip to content

Commit 6344b15

Browse files
committed
Fix CI
1 parent 748c23b commit 6344b15

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@ jobs:
2525
docker_image: graphcore/poplar:3.2.0-ubuntu-20.04-20230314
2626
build_docs: false
2727
steps:
28-
- name: "Install g++ and git"
29-
# g++ is needed to build the wrapper, git to publish the docs.
28+
- name: "Install, g++, git, jq"
29+
# g++ is needed to build the wrapper, git to publish the docs, jq for
30+
# the `julia-actions/cache` workflow
3031
run: |
3132
apt-get update -y
32-
apt-get install -y g++ git
33+
apt-get install -y g++ git jq
3334
env:
3435
DEBIAN_FRONTEND: noninteractive
35-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3637
- name: "Declare git repo safe"
3738
# In the docker container the repo is owned by 1001:123, causing the
3839
# following error when running git commands:

0 commit comments

Comments
 (0)