From b4f847dbd1a94b3111d059dc10b317a1fe922ba2 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Wed, 16 Oct 2024 14:02:19 -0400 Subject: [PATCH 1/2] Update kubo to 0.31.0 for testing Closes #843 --- .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 be5f5eba..1222f157 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,7 @@ jobs: - "0.28" - "0.29" - "0.30" + - "0.31" runs-on: ${{ matrix.os }} name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} steps: diff --git a/Dockerfile b/Dockerfile index 3532f7f6..8b05ecb4 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.30.0 +ARG IPFS_VERSION=v0.31.0 ARG BUILDARCH RUN cd /tmp \ && wget -q https://dist.ipfs.io/kubo/${IPFS_VERSION}/kubo_${IPFS_VERSION}_linux-$BUILDARCH.tar.gz \ From 4e1a44fc02f0903efc18ccd1a39acb65cf6137a7 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Wed, 16 Oct 2024 16:53:49 -0400 Subject: [PATCH 2/2] Update src of ipfs binaries to use the .tech TLD. h/t @lidel Re:#843 #845 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8b05ecb4..3117525d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ ENV IPFS_PATH=/data/ipfs ARG IPFS_VERSION=v0.31.0 ARG BUILDARCH RUN cd /tmp \ - && wget -q https://dist.ipfs.io/kubo/${IPFS_VERSION}/kubo_${IPFS_VERSION}_linux-$BUILDARCH.tar.gz \ + && wget -q https://dist.ipfs.tech/kubo/${IPFS_VERSION}/kubo_${IPFS_VERSION}_linux-$BUILDARCH.tar.gz \ && tar xvfz kubo*.tar.gz \ && mv kubo/ipfs /usr/local/bin/ipfs \ && rm -rf kubo* \