From bc9111eb9af0edbc98966c963bce16b6950374bb Mon Sep 17 00:00:00 2001 From: Bridgerz Date: Fri, 20 Dec 2024 19:45:28 +0000 Subject: [PATCH] Revert foundryup install (#20709) ## Description Revet the foundry install workflow. --- ## Release notes Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required. For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates. - [ ] Protocol: - [ ] Nodes (Validators and Full nodes): - [ ] gRPC: - [ ] JSON-RPC: - [ ] GraphQL: - [ ] CLI: - [ ] Rust SDK: --- .github/workflows/bridge.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/bridge.yml b/.github/workflows/bridge.yml index dc7cd05b280fe..281a44a8c338c 100644 --- a/.github/workflows/bridge.yml +++ b/.github/workflows/bridge.yml @@ -85,13 +85,10 @@ jobs: uses: pierotofy/set-swap-space@master with: swap-size-gb: 256 - - name: Install Foundryup - run: | - curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup;' } | bash - echo "$HOME/.config/.foundry/bin" >> $GITHUB_PATH - name: Install Foundry run: | - foundryup -i nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710 + curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup -i nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710'; } | bash + echo "$HOME/.config/.foundry/bin" >> $GITHUB_PATH - name: Install Foundry Dependencies working-directory: bridge/evm run: | @@ -112,13 +109,10 @@ jobs: runs-on: [ ubuntu-ghcloud ] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1 - - name: Install Foundryup - run: | - curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup;' } | bash - echo "$HOME/.config/.foundry/bin" >> $GITHUB_PATH - name: Install Foundry run: | - foundryup -i nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710 + curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup -i nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710'; } | bash + echo "$HOME/.config/.foundry/bin" >> $GITHUB_PATH - name: Install Foundry Dependencies working-directory: bridge/evm run: |