Skip to content

Commit 175fff5

Browse files
apollo_base_layer_tests: update foundry dependency to 1.5.1 (#11431)
1 parent 9549636 commit 175fff5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/actions/install_rust/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ runs:
3030
- name: Install Anvil
3131
uses: foundry-rs/foundry-toolchain@v1
3232
with:
33-
version: v0.3.0
33+
version: v1.5.1

.github/workflows/hybrid_system_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
- name: Install Anvil
271271
uses: foundry-rs/foundry-toolchain@v1
272272
with:
273-
version: v0.3.0
273+
version: v1.5.1
274274

275275
- name: Restore executable permissions
276276
run: chmod +x ./target/debug/sequencer_node_setup ./target/debug/sequencer_simulator

crates/apollo_base_layer_tests/src/anvil_base_layer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ impl AnvilBaseLayer {
6969
"Install instructions (for local development):\n
7070
Execute from within a directory that's included in PATH, like ~/.local/bin:\n
7171
curl -L \
72-
https://github.com/foundry-rs/foundry/releases/download/v0.3.0/foundry_v0.3.0_linux_amd64.tar.gz \
72+
https://github.com/foundry-rs/foundry/releases/download/v1.5.1/foundry_v1.5.1_linux_amd64.tar.gz \
7373
| tar -xz --wildcards 'anvil'".yellow()
7474
);
7575

deployments/anvil/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from imports import k8s
99

1010
SERVICE_PORT = 8545
11-
IMAGE = "ghcr.io/foundry-rs/foundry:v0.3.0"
11+
IMAGE = "ghcr.io/foundry-rs/foundry:v1.5.1"
1212

1313

1414
def argument_parser():

deployments/images/sequencer/node_setup.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN cargo chef prepare --recipe-path recipe.json
1414

1515
FROM base AS builder
1616
WORKDIR /app
17-
RUN curl -L https://github.com/foundry-rs/foundry/releases/download/v0.3.0/foundry_v0.3.0_linux_amd64.tar.gz | tar -xz --wildcards 'anvil'
17+
RUN curl -L https://github.com/foundry-rs/foundry/releases/download/v1.5.1/foundry_v1.5.1_linux_amd64.tar.gz | tar -xz --wildcards 'anvil'
1818
COPY --from=planner /app/recipe.json recipe.json
1919
# Copy .cargo/config.toml before cargo chef cook so llvm-sys can find LLVM
2020
COPY .cargo .cargo

0 commit comments

Comments
 (0)