From e9322adf31c78b9447d316309ed27aa565db41a3 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Mon, 10 Mar 2025 04:28:59 -0700 Subject: [PATCH] update cache --- dist/merge/index.js | 2 +- dist/upload/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/merge/index.js b/dist/merge/index.js index d52e27e..86233fd 100644 --- a/dist/merge/index.js +++ b/dist/merge/index.js @@ -5622,7 +5622,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}`); diff --git a/dist/upload/index.js b/dist/upload/index.js index df91042..6e223aa 100644 --- a/dist/upload/index.js +++ b/dist/upload/index.js @@ -5622,7 +5622,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}`);