Skip to content

Commit b463aa1

Browse files
authored
fix: update go-eth2-client dependency to v0.24.1 (#192)
* fix: update go-eth2-client dependency to v0.24.1 * feat(action.yaml): add execution-jwt-secret-key to lighthouse to allow connection to execution client * fix(action.yaml): change lighthouse jwt secret key to 0xaaaaa The previous secret key was a placeholder and is now updated to a more realistic value. * fix: update lighthouse execution-jwt-secret-key to valid format
1 parent c6ce47a commit b463aa1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/checkpoint-sync/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ runs:
190190
if: ${{ inputs.consensus == 'lighthouse' }}
191191
run: |
192192
echo "Starting Lighthouse...";
193-
docker run -p 5052:5052 --network eth -d --name beacon sigp/lighthouse:latest lighthouse bn --network=${{ inputs.network }} --datadir=/data --checkpoint-sync-url=http://checkpointz:5555 --http --http-address=0.0.0.0 --execution-endpoint=http://localhost:8545
193+
docker run -p 5052:5052 --network eth -d --name beacon sigp/lighthouse:latest lighthouse bn --network=${{ inputs.network }} --datadir=/data --checkpoint-sync-url=http://checkpointz:5555 --http --http-address=0.0.0.0 --execution-endpoint=http://localhost:8545 --execution-jwt-secret-key=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
194194
echo "Lighthouse is running.";
195195
- name: Run prysm
196196
shell: bash

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/ethpandaops/checkpointz
33
go 1.22
44

55
require (
6-
github.com/attestantio/go-eth2-client v0.24.0
6+
github.com/attestantio/go-eth2-client v0.24.1-0.20250219090147-b41ce952806c
77
github.com/chuckpreslar/emission v0.0.0-20170206194824-a7ddd980baf9
88
github.com/creasty/defaults v1.6.0
99
github.com/ethpandaops/beacon v0.47.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/attestantio/go-eth2-client v0.24.0 h1:lGVbcnhlBwRglt1Zs56JOCgXVyLWKFZOmZN8jKhE7Ws=
2-
github.com/attestantio/go-eth2-client v0.24.0/go.mod h1:/KTLN3WuH1xrJL7ZZrpBoWM1xCCihnFbzequD5L+83o=
1+
github.com/attestantio/go-eth2-client v0.24.1-0.20250219090147-b41ce952806c h1:i1p3AyXvNfUffEKAnnnoJVfDBYLRPLa/BQ8q5Mf+kY0=
2+
github.com/attestantio/go-eth2-client v0.24.1-0.20250219090147-b41ce952806c/go.mod h1:/KTLN3WuH1xrJL7ZZrpBoWM1xCCihnFbzequD5L+83o=
33
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
44
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
55
github.com/btcsuite/btcd/btcec/v2 v2.3.4 h1:3EJjcN70HCu/mwqlUsGK8GcNVyLVxFDlWurTXGPFfiQ=

0 commit comments

Comments
 (0)