From 724c99b848a57cf57194fad8a0222083a87f757e Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Thu, 5 Oct 2023 13:48:58 -0400 Subject: [PATCH] Update tests to use kubo 0.23.0 Closes #811 --- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1da89b20..0938685d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,9 +20,9 @@ jobs: - "3.10" - "3.11" ipfs: - - "0.20" - "0.21" - "0.22" + - "0.23" runs-on: ${{ matrix.os }} name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} steps: diff --git a/Dockerfile b/Dockerfile index 89341d53..cdb0c8b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN mkdir -p /data/{warc,cdxj,ipfs} # Download and install IPFS ENV IPFS_PATH=/data/ipfs -ARG IPFS_VERSION=v0.22.0 +ARG IPFS_VERSION=v0.23.0 RUN cd /tmp \ && wget -q https://dist.ipfs.io/kubo/${IPFS_VERSION}/kubo_${IPFS_VERSION}_linux-amd64.tar.gz \ && tar xvfz kubo*.tar.gz \