From 3686340078187f20bd87f32e55095329c93f2af4 Mon Sep 17 00:00:00 2001 From: Diego Date: Thu, 30 Nov 2023 20:07:54 +0100 Subject: [PATCH] replace commit hash by version --- .github/workflows/ci.yml | 2 +- scripts/build_p2pd.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb48f2e428..d9656ac784 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,7 @@ jobs: - name: Install p2pd run: | - V=1 bash scripts/build_p2pd.sh p2pdCache 124530a3 + V=1 bash scripts/build_p2pd.sh p2pdCache - name: Restore deps from cache id: deps-cache diff --git a/scripts/build_p2pd.sh b/scripts/build_p2pd.sh index 5e783bdddb..0caf89d831 100644 --- a/scripts/build_p2pd.sh +++ b/scripts/build_p2pd.sh @@ -10,7 +10,7 @@ set -e CACHE_DIR="$1" # optional parameter pointing to a CI cache dir. -LIBP2P_COMMIT="v0.2.1" # tags work too, only used in nim-libp2p CI for now +LIBP2P_COMMIT="v0.4.0" # tags work too, only used in nim-libp2p CI for now [[ -n "$2" ]] && LIBP2P_COMMIT="$2" # allow overriding it on the command line SUBREPO_DIR="vendor/go/src/github.com/libp2p/go-libp2p-daemon" if [[ ! -e "$SUBREPO_DIR" ]]; then