From 1b202ef9db7dbc53dff1a5683f9fbb9f72867a78 Mon Sep 17 00:00:00 2001 From: Barnabas Busa Date: Thu, 12 Mar 2026 10:56:16 +0100 Subject: [PATCH] chore: update besu references from hyperledger to besu-eth org The besu repository has transferred ownership from the hyperledger org to besu-eth. Updates all GitHub repo references accordingly. Note: besu/build.sh Docker image tags (hyperledger/besu:...) are left unchanged as they depend on upstream's Gradle build config. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/build-push-besu.yml | 4 ++-- README.md | 2 +- besu/build.sh | 2 +- generate_config.py | 2 +- goevmlab/Dockerfile | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-push-besu.yml b/.github/workflows/build-push-besu.yml index 0913dc78..9687ff3e 100644 --- a/.github/workflows/build-push-besu.yml +++ b/.github/workflows/build-push-besu.yml @@ -5,7 +5,7 @@ on: inputs: repository: description: The source besu repository to build from - default: hyperledger/besu + default: besu-eth/besu type: string required: true ref: @@ -37,7 +37,7 @@ jobs: with: input: ${{ inputs.docker_tag || inputs.ref }} repository: ${{ inputs.repository }} - upstream_repository: hyperledger/besu + upstream_repository: besu-eth/besu docker_tag: ${{ inputs.docker_tag }} deploy: needs: diff --git a/README.md b/README.md index 2f229cc8..15378a55 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Automates docker builds for ethereum clients. The build process is scheduled eve ## Build image on demand Run the *Build **client*** workflow; -- [Build Besu](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-besu.yml) [[source](https://github.com/hyperledger/besu)] +- [Build Besu](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-besu.yml) [[source](https://github.com/besu-eth/besu)] - [Build Dummy-EL](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-dummy-el.yml) [[source](https://github.com/ethpandaops/dummy-el)] - [Build Eleel](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-eleel.yml) [[source](https://github.com/sigp/eleel)] - [Build Erigon](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-erigon.yml) [[source](https://github.com/ledgerwatch/erigon)] diff --git a/besu/build.sh b/besu/build.sh index d1c200a2..9ceffed8 100755 --- a/besu/build.sh +++ b/besu/build.sh @@ -6,7 +6,7 @@ cd ${SCRIPT_DIR}/../source # generate the docker image tag based off besu gradle build # view the calculateVersion gradle function incase of changes upstream -# https://github.com/hyperledger/besu/blob/main/build.gradle +# https://github.com/besu-eth/besu/blob/main/build.gradle getImageTag() { local length=${1:-8} # Default length local gitFolder="$PWD/.git/" diff --git a/generate_config.py b/generate_config.py index 9168ac51..86577708 100755 --- a/generate_config.py +++ b/generate_config.py @@ -6,7 +6,7 @@ # Default repository mapping for known clients DEFAULT_REPOS = { - 'besu': 'hyperledger/besu', + 'besu': 'besu-eth/besu', 'erigon': 'erigontech/erigon', 'ethereumjs': 'ethereumjs/ethereumjs-monorepo', 'ethrex': 'lambdaclass/ethrex', diff --git a/goevmlab/Dockerfile b/goevmlab/Dockerfile index 462311a2..b5ed9d42 100644 --- a/goevmlab/Dockerfile +++ b/goevmlab/Dockerfile @@ -127,7 +127,7 @@ RUN apt-get update -q && apt-get install -qy --no-install-recommends git ca-certificates \ openjdk-21-jdk-headless=21* libjemalloc-dev=5.* - RUN git clone https://github.com/hyperledger/besu.git --depth 1 #--recurse-submodules + RUN git clone https://github.com/besu-eth/besu.git --depth 1 #--recurse-submodules RUN cd besu && ./gradlew --parallel ethereum:evmtool:installDist RUN mkdir /out && mv besu/ethereum/evmtool/build/install/evmtool /out/evmtool