Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/actions/setup-ipfs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading