From cde8fde4d3673ab9b98c9568b7137faa8e6344a0 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Mon, 4 Mar 2024 11:50:45 -0500 Subject: [PATCH] Update tests to kubo v0.27 Closes #824 --- .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 424d127c..658b72ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,10 +20,10 @@ jobs: - "3.10" - "3.11" ipfs: - - "0.23" - "0.24" - "0.25" - "0.26" + - "0.27" runs-on: ${{ matrix.os }} name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} steps: diff --git a/Dockerfile b/Dockerfile index 1c00ec15..602e75f1 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.26.0 +ARG IPFS_VERSION=v0.27.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 \