From 1dd7904dddd5b0281cd6e5704e307dcd8ea1e1af Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Fri, 29 Mar 2024 13:18:16 +0100 Subject: [PATCH] gh-actions: updates actions bitcoind and lightningd versions Bumps CLN to v24.02.1 and Bitcoin Core to v26.0 --- .github/workflows/cln-plugin.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cln-plugin.yaml b/.github/workflows/cln-plugin.yaml index b09064d4..5a1355a4 100644 --- a/.github/workflows/cln-plugin.yaml +++ b/.github/workflows/cln-plugin.yaml @@ -3,8 +3,8 @@ name: CI tests for CLN watchtower-plugin on: [push, pull_request] env: - bitcoind_version: 0.20.1 - cln_version: 0.12.1 + bitcoind_version: "26.0" + cln_version: 24.02.1 jobs: cache-cln: @@ -28,10 +28,10 @@ jobs: PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring if: ${{ steps.cache-cln.outputs.cache-hit != 'true' }} run: | - sudo apt-get update && sudo apt-get install gettext + sudo apt-get update && sudo apt-get install -y gettext protobuf-compiler git clone https://github.com/ElementsProject/lightning.git && cd lightning && git checkout v${{ env.cln_version }} pip install --user poetry && poetry install - ./configure --enable-developer && poetry run make + ./configure && poetry run make cln-plugin: needs: cache-cln @@ -69,4 +69,4 @@ jobs: - name: Run tests run: | cd watchtower-plugin/tests - DEVELOPER=1 SLOW_MACHINE=1 poetry run pytest test.py --log-cli-level=INFO -s + SLOW_MACHINE=1 poetry run pytest test.py --log-cli-level=INFO -s