From 61d4e376fed974620313b093da053d561eea19c5 Mon Sep 17 00:00:00 2001 From: Simon Paulger Date: Sun, 17 May 2026 21:45:07 +0100 Subject: [PATCH] Upgrade node v20 GH actions to resolve GH actions notification Upgrade node v20 GH actions to resolve GH actions notification --- .github/workflows/subflow-build-container-images.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/subflow-build-container-images.yml b/.github/workflows/subflow-build-container-images.yml index 2666ba5..dc41a32 100644 --- a/.github/workflows/subflow-build-container-images.yml +++ b/.github/workflows/subflow-build-container-images.yml @@ -54,7 +54,7 @@ jobs: cache-dependency-path: "**/*.sum" - name: Install Dagger CLI - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 3 @@ -63,7 +63,7 @@ jobs: cd /usr/local && { curl -sSfL https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=$engine_version sh; cd -; } - name: Login to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -80,7 +80,7 @@ jobs: mkdir -p work - name: Downloading PHP source - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 3 @@ -98,7 +98,7 @@ jobs: - name: Build packages if: ${{ steps.package_cache.outputs.cache-hit != 'true' || contains(github.event.pull_request.labels[*].name, '@force-rebuild') }} - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 120 max_attempts: 3 @@ -109,7 +109,7 @@ jobs: - name: Build and push container image if: ${{ inputs.push }} - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 30 max_attempts: 3 @@ -119,7 +119,7 @@ jobs: - name: Build container image if: ${{ ! inputs.push }} - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 30 max_attempts: 3