Skip to content

Commit

Permalink
Testing Install Solana CI action changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lorisleiva committed Jul 30, 2024
1 parent 1fee3fd commit 9d04f81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/actions/install-solana/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ runs:
- name: Install Solana
if: inputs.cache != 'true' || steps.cache.outputs.cache-hit != 'true'
run: |
sh -c "$(curl -sSfL ${{ steps.base_url.outputs.base_url }}/v${{ inputs.version }}/install)"
base_url=${{ steps.base_url.outputs.base_url }}
sh -c "$(curl -sSfL $base_url/v${{ inputs.version }}/install)"
shell: bash

- name: Set Active Solana Version
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["clients/rust", "program"]

[workspace.metadata.cli]
solana = "2.0.1"
solana = "1.18.18"

# Specify Rust toolchains for rustfmt, clippy, and build.
# Any unprovided toolchains default to stable.
Expand Down

0 comments on commit 9d04f81

Please sign in to comment.