Skip to content

Commit 3c7c248

Browse files
committed
Repackage action after @actions/http-client bump
``` npm run build npm run pack ```
1 parent 97eb409 commit 3c7c248

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dist/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1873,7 +1873,9 @@ class HttpClient {
18731873
maxSockets: maxSockets,
18741874
keepAlive: this._keepAlive,
18751875
proxy: {
1876-
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`,
1876+
...((proxyUrl.username || proxyUrl.password) && {
1877+
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`
1878+
}),
18771879
host: proxyUrl.hostname,
18781880
port: proxyUrl.port
18791881
}

0 commit comments

Comments
 (0)