From 00d21d1b2392040856d7470590aff47cf7e39c67 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Thu, 16 Apr 2026 11:01:35 -0700 Subject: [PATCH] fix(ci): retry stalled core shard checkout --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a85470cbe39..e5d649515e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -648,6 +648,16 @@ jobs: matrix: ${{ fromJson(needs.preflight.outputs.checks_node_core_test_matrix) }} steps: - name: Checkout + id: checkout + uses: actions/checkout@v6 + timeout-minutes: 2 + continue-on-error: true + with: + persist-credentials: false + submodules: false + + - name: Checkout (retry) + if: steps.checkout.outcome == 'failure' uses: actions/checkout@v6 with: persist-credentials: false