Skip to content

Commit 3fddc85

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 3fddc85

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/nightly_unit_tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ 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 sudo apt-get install -y docker.io
4548
- name: Create Redis
4649
uses: supercharge/redis-github-action@1.7.0
4750
with:

.github/workflows/pull_request_unit_tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ 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 sudo apt-get install -y docker.io
51+
- name: Upgrade Docker
52+
run: |
53+
sudo apt-get update sudo apt-get install -y docker.io
4854
- name: Create Redis
4955
uses: supercharge/redis-github-action@1.7.0
5056
with:

.github/workflows/push.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ 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 sudo apt-get install -y docker.io
4649
- name: Create Redis
4750
uses: supercharge/redis-github-action@1.7.0
4851
with:

0 commit comments

Comments
 (0)