Skip to content

Commit f52ea2a

Browse files
committed
feat(checkpoint-sync): use secrets for beacon node URLs
1 parent 976131d commit f52ea2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ runs:
3030
run: |
3131
beacon_node=""
3232
if [[ ${{ inputs.network }} == "mainnet" ]]; then
33-
beacon_node="http://testing.mainnet.beacon-api.nimbus.team/"
33+
beacon_node="{{ $secrets.MAINNET_BEACON_API_URL }}"
3434
elif [[ ${{ inputs.network }} == "holesky" ]]; then
35-
beacon_node="http://testing.holesky.beacon-api.nimbus.team/"
35+
beacon_node="{{ $secrets.HOLESKY_BEACON_API_URL }}"
3636
else
3737
echo "Unsupported network: ${{ inputs.network }}"
3838
exit 1

0 commit comments

Comments
 (0)