From 80aebe97862bdd3192317923f8f1ddf460de4bec Mon Sep 17 00:00:00 2001 From: A5 Pickle <5342825+a5-pickle@users.noreply.github.com> Date: Tue, 4 Jun 2024 10:27:21 -0500 Subject: [PATCH] fix `make clean` again (#176) Co-authored-by: A5 Pickle --- .github/workflows/solana.yml | 8 ++++++++ solana/README.md | 2 +- universal/rs/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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"