diff --git a/.github/workflows/_build-binaries.yaml b/.github/workflows/_build-binaries.yaml index ce237a9..89fb73d 100644 --- a/.github/workflows/_build-binaries.yaml +++ b/.github/workflows/_build-binaries.yaml @@ -19,7 +19,7 @@ on: description: "Base Reth Node version to build" required: false type: string - default: "1e4a8a7" + default: "main" # Set minimal permissions for all jobs by default permissions: diff --git a/clients/build-base-reth-node.sh b/clients/build-base-reth-node.sh index 7341be5..60fd89c 100755 --- a/clients/build-base-reth-node.sh +++ b/clients/build-base-reth-node.sh @@ -40,8 +40,7 @@ fi # Checkout specified version/commit echo "Checking out version: $BASE_RETH_NODE_VERSION" -git fetch origin "$BASE_RETH_NODE_VERSION" || true -git checkout -f "$BASE_RETH_NODE_VERSION" || git checkout -f "origin/$BASE_RETH_NODE_VERSION" +git checkout -f "$BASE_RETH_NODE_VERSION" # Build the binaries using cargo echo "Building base-reth-node, base-builder, and base-load-test with cargo..." diff --git a/clients/versions.env b/clients/versions.env index 4c12809..536ac9a 100644 --- a/clients/versions.env +++ b/clients/versions.env @@ -12,7 +12,7 @@ GETH_VERSION="v1.101604.0" # Base Reth Node Configuration BASE_RETH_NODE_REPO="https://github.com/base/base" -BASE_RETH_NODE_VERSION="1e4a8a7" +BASE_RETH_NODE_VERSION="main" # Build Configuration # BUILD_DIR="./build"