diff --git a/.github/workflows/build-apps.yml b/.github/workflows/build-apps.yml index 20e4aeb5ac..ce8f8b4b29 100644 --- a/.github/workflows/build-apps.yml +++ b/.github/workflows/build-apps.yml @@ -128,7 +128,7 @@ jobs: - name: yarn install # Windows is picky sometimes and fails on fetch. Step takes about ~30s - uses: nick-fields/retry@v3.0.0 + uses: nick-fields/retry@v3.0.1 with: timeout_minutes: 2 max_attempts: 3 @@ -179,7 +179,7 @@ jobs: WINDOWS_CERTIFICATE_THUMBPRINT: ${{ secrets.WINDOWS_CERTIFICATE_THUMBPRINT }} DEBUG: "electron-notarize*" # TODO: Fix electron-notarize flakes. The logs above should help gather more data on failures - uses: nick-fields/retry@v3.0.0 + uses: nick-fields/retry@v3.0.1 with: timeout_minutes: 10 max_attempts: 3 @@ -240,7 +240,7 @@ jobs: WINDOWS_CERTIFICATE_THUMBPRINT: ${{ secrets.WINDOWS_CERTIFICATE_THUMBPRINT }} DEBUG: "electron-notarize*" # TODO: Fix electron-notarize flakes. The logs above should help gather more data on failures - uses: nick-fields/retry@v3.0.0 + uses: nick-fields/retry@v3.0.1 with: timeout_minutes: 10 max_attempts: 3 diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 26ff17c99f..f54fe738e5 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -200,7 +200,7 @@ jobs: - name: Run playwright/electron flow (with retries) id: retry if: ${{ !cancelled() && (success() || failure()) }} - uses: nick-fields/retry@v3.0.0 + uses: nick-fields/retry@v3.0.1 with: command: .github/ci-cd-scripts/playwright-electron.sh ${{matrix.shardIndex}} ${{matrix.shardTotal}} ${{matrix.os}} timeout_minutes: 30