diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index bf928555..eab5967b 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -46,7 +46,7 @@ jobs: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Retry build and load - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -61,7 +61,7 @@ jobs: --cache-to type=gha,mode=max \ . - name: Run goss tests - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -105,7 +105,7 @@ jobs: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Retry build - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -120,7 +120,7 @@ jobs: --cache-to type=gha,mode=max \ . - name: Run goss tests - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -149,7 +149,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -187,7 +187,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -225,7 +225,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2db082b2..3b2b746f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,7 +48,7 @@ jobs: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Retry build and load - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -64,7 +64,7 @@ jobs: . # Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}` - name: Run goss tests - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -134,7 +134,7 @@ jobs: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Retry build and load - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -150,7 +150,7 @@ jobs: . # Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}` - name: Run goss tests - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -212,7 +212,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -258,7 +258,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -304,7 +304,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c8d30e1..7a4f2eb3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -102,7 +102,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -149,7 +149,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Retry build and push - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 11f2028a..3fc52b65 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,7 +52,7 @@ jobs: # Sanity check grep FROM Dockerfile.final.ubuntu-${{ matrix.release }} - name: Retry build final image - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -67,7 +67,7 @@ jobs: . # Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}` - name: Run goss tests - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -141,7 +141,7 @@ jobs: # Sanity check grep FROM Dockerfile.final.debian-${{ matrix.release }} - name: Retry build final image - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3 @@ -156,7 +156,7 @@ jobs: . # Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}` - name: Run goss tests - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 60 max_attempts: 3