Skip to content

Commit

Permalink
replace engine manual installation by crazy-max/ghaction-setup-docker
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
  • Loading branch information
glours committed Apr 24, 2024
1 parent 299fcd5 commit 83bcc13
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,15 @@ 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@v3
with:
version: v${{ matrix.engine }}
set-host: true
daemon-config: |
{
"debug": true
}
- name: Check Docker Version
run: docker --version
-
Expand Down

0 comments on commit 83bcc13

Please sign in to comment.