From efd23df685dd1854f19eacd96dc224912c9bcbd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar=20Rubio?= Date: Sun, 18 May 2025 13:40:20 +0200 Subject: [PATCH] Remove o and pipefail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álvaro Mondéjar Rubio --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 3567031f..a3d0dd95 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ runs: if: runner.os != 'Windows' shell: sh run: | - set -euo pipefail + set -eu curl --retry 10 -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash - name: Install cargo-binstall if: runner.os == 'Windows'