From 594c2e273e9e15027a8c9b0fdafc4cfbfdf21b01 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Thu, 10 Aug 2023 11:22:42 -0400 Subject: [PATCH] Update tests to kubo 0.22 Closes #806 --- .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 87d47b5e..1da89b20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,9 +20,9 @@ jobs: - "3.10" - "3.11" ipfs: - - "0.19" - "0.20" - "0.21" + - "0.22" runs-on: ${{ matrix.os }} name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} steps: diff --git a/Dockerfile b/Dockerfile index af0be523..89341d53 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.21.0 +ARG IPFS_VERSION=v0.22.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 \