From eefac56f1374a34c31e8da8b79e269108fd87d1b Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Mon, 15 Apr 2024 17:25:05 +0200 Subject: [PATCH] Clean up core version --- .github/actions/setup-integration-tests/action.yml | 2 +- .github/workflows/soroban-rpc.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-integration-tests/action.yml b/.github/actions/setup-integration-tests/action.yml index bfdd5c3b..2c4fae41 100644 --- a/.github/actions/setup-integration-tests/action.yml +++ b/.github/actions/setup-integration-tests/action.yml @@ -28,7 +28,7 @@ runs: sudo wget -qO - https://apt.stellar.org/SDF.asc | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=true sudo apt-key add - sudo bash -c 'echo "deb https://apt.stellar.org focal unstable" > /etc/apt/sources.list.d/SDF-unstable.list' - sudo apt-get update && sudo apt-get install -y stellar-core="$PROTOCOL_20_CORE_DEBIAN_PKG_VERSION" + sudo apt-get update && sudo apt-get install -y stellar-core="$CORE_DEBIAN_PKG_VERSION" echo "Using stellar core version $(stellar-core version)" # Docker-compose's remote contexts on Ubuntu 20 started failing with an OpenSSL versioning error. diff --git a/.github/workflows/soroban-rpc.yml b/.github/workflows/soroban-rpc.yml index 254a7cb4..4d720973 100644 --- a/.github/workflows/soroban-rpc.yml +++ b/.github/workflows/soroban-rpc.yml @@ -111,7 +111,7 @@ jobs: env: SOROBAN_RPC_INTEGRATION_TESTS_ENABLED: true SOROBAN_RPC_INTEGRATION_TESTS_CAPTIVE_CORE_BIN: /usr/bin/stellar-core - PROTOCOL_20_CORE_DEBIAN_PKG_VERSION: 20.4.1-1807.b152dc51d.focal + CORE_DEBIAN_PKG_VERSION: 20.4.1-1807.b152dc51d.focal steps: - uses: actions/checkout@v3 with: