Skip to content

Commit b4fd1f0

Browse files
committed
replace engine manual installation by crazy-max/ghaction-setup-docker
Signed-off-by: Guillaume Lours <[email protected]>
1 parent 299fcd5 commit b4fd1f0

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Diff for: .github/workflows/ci.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,15 @@ jobs:
149149
name: Checkout
150150
uses: actions/checkout@v3
151151
- name: Install Docker ${{ matrix.engine }}
152-
run: |
153-
sudo apt-get install curl
154-
curl -fsSL https://get.docker.com -o get-docker.sh
155-
sudo sh ./get-docker.sh --version ${{ matrix.engine }}
152+
uses: crazy-max/ghaction-setup-docker@v3
153+
with:
154+
version: v${{ matrix.engine }}
155+
set-host: true
156+
daemon-config: |
157+
{
158+
"debug": true,
159+
}
160+
156161
- name: Check Docker Version
157162
run: docker --version
158163
-

0 commit comments

Comments
 (0)