Merge pull request #1114 from docker/setup-dockercli-gha

Setup docker cli on gha
This commit is contained in:
Guillaume Tardif 2021-01-11 11:13:47 +01:00 committed by GitHub
commit 8b3b634b04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 0 deletions

View File

@ -34,6 +34,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -45,6 +45,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -35,6 +35,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -14,6 +14,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -35,6 +35,10 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2