From 7fdbbb8968c49fb55011ace47efc7b0ccfc9a28f Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 28 Aug 2026 18:06:56 +0000 Subject: [PATCH] chore: Update dist --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 6270c5c..7b5d0e9 100644 --- a/dist/index.js +++ b/dist/index.js @@ -74845,11 +74845,11 @@ async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, ba info( `Retry${opName}: attempt ${nextRetry} of ${maxRetries} failed: ${errorMessage(err)}. Retrying after ${Math.floor(delay)}ms.` ); - await sleep2(delay); if (nextRetry >= maxRetries) { info(`Retry${opName}: reached max retries (${maxRetries}); giving up.`); throw err; } + await sleep2(delay); return await retryAndBackoff(fn, isRetryable, maxRetries, nextRetry, base, label); } }