We current download binaries using tarballs from https://download.docker.com/ when a version is specified in version input.
We could use the following images as version if user wants to be on edge:
These images distribute artifacts that we could extract with this action. User could then just set version with the list of images to download and extract:
-
name: Set up Docker
uses: crazy-max/ghaction-setup-docker@v3
with:
version: |
moby/moby-bin:master
dockereng/cli-bin:master
cc @kiview
We current download binaries using tarballs from https://download.docker.com/ when a version is specified in
versioninput.We could use the following images as
versionif user wants to be on edge:These images distribute artifacts that we could extract with this action. User could then just set
versionwith the list of images to download and extract:- name: Set up Docker uses: crazy-max/ghaction-setup-docker@v3 with: version: | moby/moby-bin:master dockereng/cli-bin:mastercc @kiview