From e148dbc58fa9fa4bbfdb2a14bdd3a77a2b9381ac Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Mon, 11 May 2026 13:08:47 +0200 Subject: [PATCH] chore: bump go, kubo, cluster-ctl, dist action Refresh pinned versions and download dist binaries from GitHub releases instead of dist.ipfs.tech. - .tool-versions: golang 1.26.2 -> 1.26.4 - workflows: KUBO_VER v0.41.0-rc1 -> v0.42.0 - workflows: CLUSTER_CTL_VER v1.0.8 -> v1.1.6 - setup-ipfs: pin download-ipfs-distribution-action to the head of ipfs/download-ipfs-distribution-action#49; move to @v2 once tagged --- .github/actions/setup-ipfs/action.yml | 6 ++++-- .github/workflows/main.yml | 4 ++-- .github/workflows/nightly.yml | 4 ++-- .tool-versions | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/actions/setup-ipfs/action.yml b/.github/actions/setup-ipfs/action.yml index 5e87bcd3..55f2d2a6 100644 --- a/.github/actions/setup-ipfs/action.yml +++ b/.github/actions/setup-ipfs/action.yml @@ -3,11 +3,13 @@ description: Setup IPFS runs: using: "composite" steps: - - uses: ipfs/download-ipfs-distribution-action@v1 + # fetches from GitHub releases instead of dist.ipfs.tech + # (unreleased ipfs/download-ipfs-distribution-action#49, pinned to its head) + - uses: ipfs/download-ipfs-distribution-action@c0a98521ab68c887b26c67c06d3acae5e0ddace9 with: name: kubo version: "${{ env.KUBO_VER }}" - - uses: ipfs/download-ipfs-distribution-action@v1 + - uses: ipfs/download-ipfs-distribution-action@c0a98521ab68c887b26c67c06d3acae5e0ddace9 with: name: ipfs-cluster-ctl version: "${{ env.CLUSTER_CTL_VER }}" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a2076400..f2fc1ed0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,8 +16,8 @@ on: env: DIST_ROOT: ${{ github.event.inputs.dist_root || '/ipns/dist.ipfs.tech' }} # content root used for calculating diff to build - KUBO_VER: 'v0.41.0-rc1' # kubo daemon used for chunking and applying diff - CLUSTER_CTL_VER: 'v1.0.8' # ipfs-cluster-ctl used for pinning + KUBO_VER: 'v0.42.0' # kubo daemon used for chunking and applying diff + CLUSTER_CTL_VER: 'v1.1.6' # ipfs-cluster-ctl used for pinning concurrency: # we want only one job running at the time because it is expensive diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 36934ccd..c13a4570 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -12,8 +12,8 @@ on: env: DIST_ROOT: ${{ github.event.inputs.custom_dist_root || '/ipns/dist.ipfs.tech' }} # content root used for calculating diff to build - KUBO_VER: 'v0.41.0-rc1' # kubo daemon used for chunking and applying diff - CLUSTER_CTL_VER: 'v1.0.8' # ipfs-cluster-ctl used for pinning + KUBO_VER: 'v0.42.0' # kubo daemon used for chunking and applying diff + CLUSTER_CTL_VER: 'v1.1.6' # ipfs-cluster-ctl used for pinning concurrency: group: nightly diff --git a/.tool-versions b/.tool-versions index 86e24fd9..33d7d19c 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ nodejs 16.15.1 -golang 1.26.2 +golang 1.26.4