From ae8a4beff0402317045fd6d2d5b0c7004b939fe0 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Mon, 10 Mar 2025 04:29:32 -0700 Subject: [PATCH] update cache --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 9613d4a..71f98bb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -30818,7 +30818,7 @@ class ArtifactHttpClient { maskSigUrl(url, urlType) { const sigIndex = url.indexOf('sig='); if (sigIndex !== -1) { - const sigValue = url.substring(sigIndex + 4).split('&')[0]; + const sigValue = url.substring(sigIndex + 4); (0, core_1.setSecret)(sigValue); const maskedUrl = `${url.substring(0, sigIndex + 4)}***`; (0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`);