From 85d30f95f76e94b47b214b59403885b6c4a07426 Mon Sep 17 00:00:00 2001 From: Loris Leiva Date: Tue, 30 Jul 2024 10:49:55 +0100 Subject: [PATCH] Testing Install Solana CI action changes (custom base_url) --- .github/actions/setup/action.yml | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index c835c13..1a9a76a 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -59,6 +59,7 @@ runs: uses: ./.github/actions/install-solana with: version: ${{ env.SOLANA_VERSION }} + base_url: 'https://release.solana.com' cache: true - name: Cache Cargo Dependencies diff --git a/Cargo.toml b/Cargo.toml index 36483f1..f7d811f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["clients/rust", "program"] [workspace.metadata.cli] -solana = "1.18.17" +solana = "2.0.1" # Specify Rust toolchains for rustfmt, clippy, and build. # Any unprovided toolchains default to stable.