Skip to content

Commit

Permalink
Bump http-client version (#221) (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelkrulec-ext96968 committed Sep 14, 2021
1 parent 68c162b commit 61c179a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6,299 deletions.
2 changes: 1 addition & 1 deletion .licenses/npm/@actions/http-client.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/cleanup/index.js
Expand Up @@ -49663,7 +49663,9 @@ class HttpClient {
maxSockets: maxSockets,
keepAlive: this._keepAlive,
proxy: {
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`,
...((proxyUrl.username || proxyUrl.password) && {
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`
}),
host: proxyUrl.hostname,
port: proxyUrl.port
}
Expand Down
4 changes: 3 additions & 1 deletion dist/setup/index.js
Expand Up @@ -39653,7 +39653,9 @@ class HttpClient {
maxSockets: maxSockets,
keepAlive: this._keepAlive,
proxy: {
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`,
...((proxyUrl.username || proxyUrl.password) && {
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`
}),
host: proxyUrl.hostname,
port: proxyUrl.port
}
Expand Down

0 comments on commit 61c179a

Please sign in to comment.