From 672ae81c82a55e9cf40e938e8fd8318bbf35cd09 Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Tue, 5 Nov 2024 22:07:13 +0000 Subject: [PATCH] Upgrade Solana validator to version 1.18.18 --- .github/actions/install-testing-tools/action.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/actions/install-testing-tools/action.yml b/.github/actions/install-testing-tools/action.yml index 90c19ad4..9651228d 100644 --- a/.github/actions/install-testing-tools/action.yml +++ b/.github/actions/install-testing-tools/action.yml @@ -6,10 +6,7 @@ runs: - name: Install Solana if: ${{ runner.os != 'Windows' }} run: | - # smoelius: The latest stable (1.16) seems to cause problems for the xNFT tests. I suspect - # this is the reason: - # https://github.com/solana-labs/solana/issues/31960#issuecomment-1668682153 - sh -c "$(curl -sSfL https://release.solana.com/v1.14.29/install)" + sh -c "$(curl -sSfL https://release.solana.com/v1.18.18/install)" echo "$HOME/.local/share/solana/install/active_release/bin" >> "$GITHUB_PATH" shell: bash