From c2713846633262e378e439c5a4df7fc20e606ccb Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Wed, 24 Apr 2024 11:48:48 +0200 Subject: [PATCH] replace engine manual installation by crazy-max/ghaction-setup-docker Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- .github/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4a67a3cdd5..70ce6d829fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -149,10 +149,13 @@ jobs: name: Checkout uses: actions/checkout@v3 - name: Install Docker ${{ matrix.engine }} - run: | - sudo apt-get install curl - curl -fsSL https://get.docker.com -o get-docker.sh - sudo sh ./get-docker.sh --version ${{ matrix.engine }} + uses: crazy-max/ghaction-setup-docker@v2 + with: + "version": ${{ matrix.engine }} + daemon-config: | + { + "debug": true, + } - name: Check Docker Version run: docker --version -