File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed
artifact/src/internal/shared
cache/src/internal/shared Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,8 @@ export function maskSigUrl(url: string): void {
93
93
try {
94
94
const parsedUrl = new URL ( url )
95
95
const signature = parsedUrl . searchParams . get ( 'sig' )
96
-
97
96
if ( signature ) {
98
97
setSecret ( signature )
99
- setSecret ( encodeURIComponent ( signature ) )
100
- parsedUrl . searchParams . set ( 'sig' , '***' )
101
98
}
102
99
} catch ( error ) {
103
100
debug (
Original file line number Diff line number Diff line change @@ -22,11 +22,8 @@ export function maskSigUrl(url: string): void {
22
22
try {
23
23
const parsedUrl = new URL ( url )
24
24
const signature = parsedUrl . searchParams . get ( 'sig' )
25
-
26
25
if ( signature ) {
27
26
setSecret ( signature )
28
- setSecret ( encodeURIComponent ( signature ) )
29
- parsedUrl . searchParams . set ( 'sig' , '***' )
30
27
}
31
28
} catch ( error ) {
32
29
debug (
You can’t perform that action at this time.
0 commit comments