From a4585ceab69dda8b2a77178a70009e8c1bd8feb4 Mon Sep 17 00:00:00 2001 From: Antoine Toulme Date: Fri, 16 Jun 2023 08:57:52 -0700 Subject: [PATCH] [chore] retry sending coverage output (#23413) --- .github/workflows/build-and-test.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e32c9fb6061a..f6758913ffde 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -292,10 +292,14 @@ jobs: with: name: coverage-artifacts - name: Upload coverage report - uses: codecov/codecov-action@v3 - with: - fail_ci_if_error: true - verbose: true + uses: Wandalen/wretry.action@v1.0.36 + with: + action: codecov/codecov-action@v3 + with: | + fail_ci_if_error: true + verbose: true + attempt_limit: 5 + attempt_delay: 10000 integration-tests: runs-on: ubuntu-latest