From 223592152f600ffa42e292def8c279772a7dc8d0 Mon Sep 17 00:00:00 2001 From: Karsten Sperling <113487422+ksperling-apple@users.noreply.github.com> Date: Mon, 26 Jun 2023 22:34:14 +1200 Subject: [PATCH] Re-enable retry around checkout for minimal-build (#27463) This was disabled due to https://github.com/Wandalen/wretry.action/issues/83 and should be fixed in v1.3.0 --- .github/workflows/minimal-build.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/minimal-build.yaml b/.github/workflows/minimal-build.yaml index 77b801a749fb3a..c04a29844d9827 100644 --- a/.github/workflows/minimal-build.yaml +++ b/.github/workflows/minimal-build.yaml @@ -35,8 +35,14 @@ jobs: image: connectedhomeip/chip-build-minimal:0.7.3 steps: - - name: Checkout - uses: actions/checkout@v3.5.2 + - uses: Wandalen/wretry.action@v1.3.0 + name: Checkout + with: + action: actions/checkout@v3.5.2 + with: | + token: ${{ github.token }} + attempt_limit: 3 + attempt_delay: 2000 - name: Checkout submodules run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux - name: Configure and build All Clusters App