From 5a6676c62cc0b8916a4b48ae2d11501d87b1c670 Mon Sep 17 00:00:00 2001 From: Konsta Purtsi Date: Wed, 15 Jan 2025 12:41:42 +0200 Subject: [PATCH] chore: Upgrade stellar-cli in Actions --- .github/actions/setup-rust-stellar/action.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/actions/setup-rust-stellar/action.yml b/.github/actions/setup-rust-stellar/action.yml index 8d37355f..41758b1c 100644 --- a/.github/actions/setup-rust-stellar/action.yml +++ b/.github/actions/setup-rust-stellar/action.yml @@ -1,10 +1,5 @@ name: Setup Rust and Stellar description: Installs Rust toolchain and Stellar CLI -inputs: - stellar_version: - description: The version of Stellar CLI to install - required: false - default: "22.0.0" runs: using: composite steps: @@ -21,7 +16,7 @@ runs: - name: Install Stellar CLI run: | wget -q https://github.com/stellar/stellar-cli/releases/download/v22.0.0/stellar-cli-22.0.0-x86_64-unknown-linux-gnu.tar.gz - tar xvf stellar-cli-22.0.0-x86_64-unknown-linux-gnu.tar.gz + tar xvf stellar-cli-22.2.0-x86_64-unknown-linux-gnu.tar.gz sudo mv stellar /usr/local/bin/ stellar --version shell: bash