From 20b7721a4505b84caa499ddb3346c8c019d18747 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Tue, 24 Jun 2025 16:00:09 -0400 Subject: [PATCH] Enable retry-all-errors by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This changes the default value of retry-all-errors from false to true, making the action more resilient to transient download failures by default. Also clarifies the description to specifically mention it applies to downloading the chainctl binary. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index f5ef5f6..d394be3 100644 --- a/action.yaml +++ b/action.yaml @@ -60,9 +60,9 @@ inputs: retry-all-errors: description: | - Whether to retry on all errors. + Whether to retry on errors downloading the chainctl binary. required: false - default: false + default: true runs: using: "composite"