Skip to content

Commit bf4ca62

Browse files
authored
Merge pull request docker#9721 from glours/update-docker-cli
update Docker CLI version use in CI to v20.10.17
2 parents ae08f57 + 143a40a commit bf4ca62

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
default: "false"
1414
env:
1515
GO_VERSION: 1.18.5
16+
DOCKER_CLI_VERSION: 20.10.17
1617
jobs:
1718
lint:
1819
name: Lint
@@ -73,7 +74,7 @@ jobs:
7374

7475
- name: Setup docker CLI
7576
run: |
76-
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz
77+
curl https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_CLI_VERSION}.tgz | tar xz
7778
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
7879
7980
- name: Test
@@ -102,7 +103,7 @@ jobs:
102103

103104
- name: Setup docker CLI
104105
run: |
105-
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz
106+
curl https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_CLI_VERSION}.tgz | tar xz
106107
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
107108
108109
- name: Build for local E2E

0 commit comments

Comments
 (0)