Skip to content

Commit de5ec46

Browse files
authored
chore: Update besu repo reference to besu-eth/besu (#49)
## Summary - Update all references from `hyperledger/besu` to `besu-eth/besu` to reflect the repository migration ## Test plan - [ ] Verify CI workflows still resolve the correct besu images/repos
1 parent 09050fc commit de5ec46

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/test-client-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# Test besu outputs
4646
echo "Besu repo: ${{ steps.test_git_defaults.outputs.besu_repo }}"
4747
echo "Besu tag: ${{ steps.test_git_defaults.outputs.besu_tag }}"
48-
[[ "${{ steps.test_git_defaults.outputs.besu_repo }}" == "hyperledger/besu" ]] || exit 1
48+
[[ "${{ steps.test_git_defaults.outputs.besu_repo }}" == "besu-eth/besu" ]] || exit 1
4949
[[ "${{ steps.test_git_defaults.outputs.besu_tag }}" == "main" ]] || exit 1
5050
5151
# Test reth outputs
@@ -100,7 +100,7 @@ jobs:
100100
client_repos: |
101101
{
102102
"geth": "ethereum/go-ethereum@v1.13.0",
103-
"besu": "hyperledger/besu@23.7.0",
103+
"besu": "besu-eth/besu@23.7.0",
104104
"reth": "paradigmxyz/reth@v0.1.0"
105105
}
106106
hive_version: "ethereum/hive@v1.10.0"
@@ -124,7 +124,7 @@ jobs:
124124
# Test custom besu version
125125
echo "Besu repo: ${{ steps.test_custom_git.outputs.besu_repo }}"
126126
echo "Besu tag: ${{ steps.test_custom_git.outputs.besu_tag }}"
127-
[[ "${{ steps.test_custom_git.outputs.besu_repo }}" == "hyperledger/besu" ]] || exit 1
127+
[[ "${{ steps.test_custom_git.outputs.besu_repo }}" == "besu-eth/besu" ]] || exit 1
128128
[[ "${{ steps.test_custom_git.outputs.besu_tag }}" == "23.7.0" ]] || exit 1
129129
130130
# Test custom reth version
@@ -192,7 +192,7 @@ jobs:
192192
client_repos: |
193193
{
194194
"geth": "ethereum/go-ethereum@v1.13.0",
195-
"besu": "hyperledger/besu@23.7.0"
195+
"besu": "besu-eth/besu@23.7.0"
196196
}
197197
198198
- name: Verify common tag override git
@@ -209,7 +209,7 @@ jobs:
209209
echo "Geth repo: ${{ steps.test_common_tag_git.outputs.geth_repo }}"
210210
echo "Besu repo: ${{ steps.test_common_tag_git.outputs.besu_repo }}"
211211
[[ "${{ steps.test_common_tag_git.outputs.geth_repo }}" == "ethereum/go-ethereum" ]] || exit 1
212-
[[ "${{ steps.test_common_tag_git.outputs.besu_repo }}" == "hyperledger/besu" ]] || exit 1
212+
[[ "${{ steps.test_common_tag_git.outputs.besu_repo }}" == "besu-eth/besu" ]] || exit 1
213213
214214
echo "✅ Common client tag git test passed"
215215

helpers/client-config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This composite action generates Hive client configuration based on input paramet
1111
client_repos: |
1212
{
1313
"geth": "ethereum/go-ethereum@master",
14-
"besu": "hyperledger/besu@main",
14+
"besu": "besu-eth/besu@main",
1515
"reth": "paradigmxyz/reth@main"
1616
}
1717
client_images: |

helpers/client-config/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
default: |
99
{
1010
"geth": "ethereum/go-ethereum@master",
11-
"besu": "hyperledger/besu@main",
11+
"besu": "besu-eth/besu@main",
1212
"reth": "paradigmxyz/reth@main",
1313
"nethermind": "NethermindEth/nethermind@master",
1414
"erigon": "erigontech/erigon@main",
@@ -180,7 +180,7 @@ runs:
180180
# Define client configurations
181181
declare -A CLIENT_DEFAULTS=(
182182
["geth"]="ethereum/go-ethereum@master"
183-
["besu"]="hyperledger/besu@main"
183+
["besu"]="besu-eth/besu@main"
184184
["reth"]="paradigmxyz/reth@main"
185185
["nethermind"]="NethermindEth/nethermind@master"
186186
["erigon"]="erigontech/erigon@main"

0 commit comments

Comments
 (0)