From 741828107bee409b059fb287480962223a6ccc67 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Mon, 29 Apr 2024 16:39:40 +0200 Subject: [PATCH] Fail on curl errors Signed-off-by: Guillaume Tardif --- start/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start/action.yml b/start/action.yml index 6d8cbb9..ee6f545 100644 --- a/start/action.yml +++ b/start/action.yml @@ -106,7 +106,7 @@ runs: if: runner.os == 'Linux' shell: bash run: | - curl https://desktop.docker.com/linux/main/amd64/appcast.xml -o appcast.xml + curl https://desktop.docker.com/linux/main/amd64/appcast.xml -f -o appcast.xml - name: Get Docker Desktop latest build url if: runner.os == 'Linux' && inputs.docker-desktop-build-url == 'latest'