From 5145d43e7276428a0833a3116d0f968bb8f2b442 Mon Sep 17 00:00:00 2001 From: Matthew McCormick Date: Thu, 13 Mar 2025 15:51:48 -0400 Subject: [PATCH] ci(browser): use docker pull retry --- .github/workflows/cypress.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 123b0181c..aaeef06aa 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -32,9 +32,12 @@ jobs: large-packages: false tool-cache: true - - name: Pull latest Docker images - run: | - ./src/docker/pull.sh --no-debug + - uses: nick-fields/retry@v3 + name: Pull latest Docker images + with: + max_attempts: 5 + timeout_minutes: 10 + command: ./src/docker/pull.sh --no-debug - name: Install uses: pnpm/action-setup@v4