From 979bf04279965e3769bc2af6047323a71459c1be Mon Sep 17 00:00:00 2001 From: Diego Rondini Date: Tue, 21 May 2024 14:42:22 +0200 Subject: [PATCH] Fix setup of docker on Mac OS runner Switch to a different action to install docker on Mac OS, the current one seems to be problematic. https://github.com/marketplace/actions/setup-docker-on-macos Useful references about the issue: https://github.com/actions/runner-images/issues/17 https://github.com/docker-practice/actions-setup-docker/pull/29 Signed-off-by: Diego Rondini --- .github/workflows/pipeline-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline-build.yml b/.github/workflows/pipeline-build.yml index 28a0e70..c017e9d 100644 --- a/.github/workflows/pipeline-build.yml +++ b/.github/workflows/pipeline-build.yml @@ -22,9 +22,9 @@ jobs: uses: gradle/actions/setup-gradle@v3 #Run only on macOS - - name: Setup Docker + - name: Setup Docker on macOS if: ${{ matrix.os == 'macos-13' && github.event_name == 'pull_request' }} - uses: better0fdead/actions-setup-docker@better0fdead/increase-timeout + uses: douglascamata/setup-docker-macos-action@v1-alpha - name: Set up JDK 17 uses: actions/setup-java@v4