From 636d2a0798cc98d2a83655fd5886029ac60ceb32 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Thu, 11 Jan 2024 10:28:24 -0500 Subject: [PATCH] Update kubo to v0.26.0 for testing in anticipation of release Fixes #822 --- .github/workflows/test.yml | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b60c6ab..424d127c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,7 @@ jobs: - "0.23" - "0.24" - "0.25" + - "0.26" runs-on: ${{ matrix.os }} name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} steps: diff --git a/Dockerfile b/Dockerfile index f528cffd..1c00ec15 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.25.0 +ARG IPFS_VERSION=v0.26.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 \