Skip to content

Commit

Permalink
bump up to v1.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Aug 25, 2024
1 parent d137a9d commit aac270e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3194,7 +3194,7 @@ class HttpClient {
}
const usingSsl = parsedUrl.protocol === 'https:';
proxyAgent = new undici_1.ProxyAgent(Object.assign({ uri: proxyUrl.href, pipelining: !this._keepAlive ? 0 : 1 }, ((proxyUrl.username || proxyUrl.password) && {
token: `${proxyUrl.username}:${proxyUrl.password}`
token: `Basic ${Buffer.from(`${proxyUrl.username}:${proxyUrl.password}`).toString('base64')}`
})));
this._proxyAgentDispatcher = proxyAgent;
if (usingSsl && this._ignoreSslError) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "actions-upload-release-asset",
"version": "1.7.6",
"version": "1.7.7",
"private": true,
"description": "Yet Another Upload Release Asset Action",
"main": "lib/main.js",
Expand Down

0 comments on commit aac270e

Please sign in to comment.