We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 299fcd5 commit b4fd1f0Copy full SHA for b4fd1f0
.github/workflows/ci.yml
@@ -149,10 +149,15 @@ jobs:
149
name: Checkout
150
uses: actions/checkout@v3
151
- 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 }}
+ uses: crazy-max/ghaction-setup-docker@v3
+ with:
+ version: v${{ matrix.engine }}
+ set-host: true
156
+ daemon-config: |
157
+ {
158
+ "debug": true,
159
+ }
160
+
161
- name: Check Docker Version
162
run: docker --version
163
-
0 commit comments