Skip to content

Commit 53bc4c7

Browse files
committed
gha: moby-latest: make "Install Stable Docker" actually install
It was only downloading the script, but not executing. While at it, also setting the '-f' (fail-fast), '-s' (silent, unless failing), '-S' (force TLS), and '-L' (follow redirects) options that are recommended when piping the output and executing it. Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent be5966e commit 53bc4c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/moby-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Install Stable Docker
2222
if: ${{ matrix.install-docker-type == 'STABLE' }}
23-
run: curl https://get.docker.com
23+
run: curl -fsSL https://get.docker.com | sh
2424

2525
- name: Install Docker from the TEST channel
2626
if: ${{ matrix.install-docker-type == 'ROOTFUL' }}

0 commit comments

Comments
 (0)