Skip to content

Commit 4f40b86

Browse files
committed
fix: update docker version at GA
fix error docker: Error response from daemon: client version 1.40 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version.
1 parent 13cff1e commit 4f40b86

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/nightly_unit_tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
- 3306:3306
4343
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
4444
steps:
45+
- name: Upgrade Docker
46+
run: |
47+
sudo apt-get update
48+
sudo apt-get install -y docker.io
4549
- name: Create Redis
4650
uses: supercharge/[email protected]
4751
with:

.github/workflows/pull_request_unit_tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
- 3306:3306
4646
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
4747
steps:
48+
- name: Upgrade Docker
49+
run: |
50+
sudo apt-get update
51+
sudo apt-get install -y docker.io
52+
- name: Upgrade Docker
53+
run: |
54+
sudo apt-get update sudo apt-get install -y docker.io
4855
- name: Create Redis
4956
uses: supercharge/[email protected]
5057
with:

.github/workflows/push.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
- 3306:3306
4444
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
4545
steps:
46+
- name: Upgrade Docker
47+
run: |
48+
sudo apt-get update
49+
sudo apt-get install -y docker.io
4650
- name: Create Redis
4751
uses: supercharge/[email protected]
4852
with:

0 commit comments

Comments
 (0)