File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 4747 checks : write
4848 steps :
4949 - uses : actions/checkout@v4
50+ - name : Install Latest Docker
51+ run : |
52+ sudo systemctl stop docker.service
53+ sudo apt-get purge docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-ce-rootless-extras docker-buildx-plugin
54+ curl -fsSL https://test.docker.com -o get-docker.sh
55+ sudo REPO_FILE=docker-ce-staging.repo DOWNLOAD_URL=https://download-stage.docker.com sh ./get-docker.sh
56+ - name : Check Docker version
57+ run : docker version
5058 - name : Setup rootless Docker
51595260 - name : Remove Docket root socket
Original file line number Diff line number Diff line change 1414 - uses : ./.github/actions/setup-build
1515
1616 - name : Install Stable Docker
17- run : curl https://get.docker.com
17+ run : |
18+ sudo systemctl stop docker.service
19+ sudo apt-get purge docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-ce-rootless-extras docker-buildx-plugin
20+ curl -fsSL https://get.docker.com -o get-docker.sh
21+ sudo sh ./get-docker.sh
1822
1923 - name : Check Docker version
2024 run : docker version
4650 - uses : ./.github/actions/setup-build
4751
4852 - name : Install Latest Docker
49- run : curl https://get.docker.com | CHANNEL=test sh
53+ run : |
54+ sudo systemctl stop docker.service
55+ sudo apt-get purge docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-ce-rootless-extras docker-buildx-plugin
56+ curl -fsSL https://test.docker.com -o get-docker.sh
57+ sudo REPO_FILE=docker-ce-staging.repo DOWNLOAD_URL=https://download-stage.docker.com sh ./get-docker.sh
5058
5159 - name : Check Docker version
5260 run : docker version
You can’t perform that action at this time.
0 commit comments