Skip to content

Commit 61c179a

Browse files
Bump http-client version (#221) (#222)
1 parent 68c162b commit 61c179a

File tree

5 files changed

+14
-6299
lines changed

5 files changed

+14
-6299
lines changed

.licenses/npm/@actions/http-client.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cleanup/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -49663,7 +49663,9 @@ class HttpClient {
4966349663
maxSockets: maxSockets,
4966449664
keepAlive: this._keepAlive,
4966549665
proxy: {
49666-
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`,
49666+
...((proxyUrl.username || proxyUrl.password) && {
49667+
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`
49668+
}),
4966749669
host: proxyUrl.hostname,
4966849670
port: proxyUrl.port
4966949671
}

dist/setup/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -39653,7 +39653,9 @@ class HttpClient {
3965339653
maxSockets: maxSockets,
3965439654
keepAlive: this._keepAlive,
3965539655
proxy: {
39656-
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`,
39656+
...((proxyUrl.username || proxyUrl.password) && {
39657+
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`
39658+
}),
3965739659
host: proxyUrl.hostname,
3965839660
port: proxyUrl.port
3965939661
}

0 commit comments

Comments
 (0)