Docker_remote broken?

For last hour, this example step started to fail (while the target URL exists and can be fetched and unzipped):

    - run:
        name: Install Docker client
        command: |
            set -x
            VER="18.06.0-ce"
            curl -L -o /tmp/docker-$VER.tgz https://download.docker.com/linux/static/stable/x86_64/docker-$VER.tgz
            tar -xz -C /tmp -f /tmp/docker-$VER.tgz
            mv /tmp/docker/* /usr/bin
#!/bin/bash --login
set -x
VER="17.03.0-ce"
curl -L -o /tmp/docker-$VER.tgz https://download.docker.com/linux/static/stable/x86_64/docker-$VER.tgz
tar -xz -C /tmp -f /tmp/docker-$VER.tgz
mv /tmp/docker/* /usr/bin
+ VER=17.03.0-ce
+ curl -L -o /tmp/docker-17.03.0-ce.tgz https://download.docker.com/linux/static/stable/x86_64/docker-17.03.0-ce.tgz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

100   496  100   496    0     0   5069      0 --:--:-- --:--:-- --:--:--  5061
+ tar -xz -C /tmp -f /tmp/docker-17.03.0-ce.tgz

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
+ mv '/tmp/docker/*' /usr/bin
mv: cannot stat '/tmp/docker/*': No such file or directory
Exited with code 1

Answering myself, seems like this temporary issue is gone now.

Did you do anything to resolve this issue, I am running into the exact same issue with these code:

- run:
      name: Install Docker Client
      command: |
        set -x
        VER="19.03.13-ce"
        curl -L -o /tmp/docker-$VER.tgz https://download.docker.com/linux/static/stable/x86_64/docker-$VER.tgz
        tar -xz -C /tmp -f /tmp/docker-$VER.tgz
        mv /tmp/docker/* /usr/bin