diff --git a/.github/workflows/solana.yml b/.github/workflows/solana.yml index 55751d54..5484b077 100644 --- a/.github/workflows/solana.yml +++ b/.github/workflows/solana.yml @@ -64,6 +64,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Install Foundry + uses: foundry-rs/foundry-toolchain@v1 + with: + version: nightly - uses: metadaoproject/setup-anchor@v2 with: node-version: "20.11.0" @@ -80,6 +84,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Install Foundry + uses: foundry-rs/foundry-toolchain@v1 + with: + version: nightly - uses: metadaoproject/setup-anchor@v2 with: node-version: "20.11.0" diff --git a/solana/README.md b/solana/README.md index 2ec39e93..27b6cb1c 100644 --- a/solana/README.md +++ b/solana/README.md @@ -50,7 +50,7 @@ solana program deploy -u d --program-id ucdP9ktgrXgEUnn6roqD2SfdGMR2JSiWHUKv23oX ## Managing Upgrades -TODO +TODO: Discuss Upgrade Manager. ## Testnet Example Solver diff --git a/universal/rs/Cargo.toml b/universal/rs/Cargo.toml index 8e01758c..0ad25839 100644 --- a/universal/rs/Cargo.toml +++ b/universal/rs/Cargo.toml @@ -18,7 +18,7 @@ wormhole-raw-vaas = "0.3.0-alpha.0" hex-literal = "0.4.1" [workspace.lints.clippy] -correctness = { level = "warn"} +correctness = { level = "warn", priority = -1 } arithmetic_side_effects = "deny" as_conversions = "deny"