From a4428761f7de88d8c8c823a1f4985fe9f05f4b17 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 19 Apr 2024 06:03:15 -0400 Subject: [PATCH] Bitcoin 27.0 --- .github/actions/bitcoin/action.yml | 2 +- .github/actions/test-dependencies/action.yml | 2 +- orchestration/src/coins/bitcoin.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/bitcoin/action.yml b/.github/actions/bitcoin/action.yml index 90310868..5008b690 100644 --- a/.github/actions/bitcoin/action.yml +++ b/.github/actions/bitcoin/action.yml @@ -5,7 +5,7 @@ inputs: version: description: "Version to download and run" required: false - default: 24.0.1 + default: 27.0 runs: using: "composite" diff --git a/.github/actions/test-dependencies/action.yml b/.github/actions/test-dependencies/action.yml index a19e1704..7487a33b 100644 --- a/.github/actions/test-dependencies/action.yml +++ b/.github/actions/test-dependencies/action.yml @@ -10,7 +10,7 @@ inputs: bitcoin-version: description: "Bitcoin version to download and run as a regtest node" required: false - default: 24.0.1 + default: 27.0 runs: using: "composite" diff --git a/orchestration/src/coins/bitcoin.rs b/orchestration/src/coins/bitcoin.rs index a5c8b21c..527b1062 100644 --- a/orchestration/src/coins/bitcoin.rs +++ b/orchestration/src/coins/bitcoin.rs @@ -7,7 +7,7 @@ pub fn bitcoin(orchestration_path: &Path, network: Network) { const DOWNLOAD_BITCOIN: &str = r#" FROM alpine:latest as bitcoin -ENV BITCOIN_VERSION=26.0 +ENV BITCOIN_VERSION=27.0 RUN apk --no-cache add git gnupg