1
0
Fork 0
mirror of https://code.forgejo.org/actions/download-artifact synced 2025-07-15 22:43:52 +02:00

update cache

This commit is contained in:
Salman Chishti 2025-03-10 04:29:32 -07:00
parent 337dc32f19
commit ae8a4beff0

2
dist/index.js vendored
View file

@ -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}`);