Skip to content

Commit c7c05fd

Browse files
committed
Update Dependencies
1 parent 4c14f72 commit c7c05fd

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

dist/index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,7 @@ exports.getInput = getInput;
920920
*/
921921
// eslint-disable-next-line @typescript-eslint/no-explicit-any
922922
function setOutput(name, value) {
923+
process.stdout.write(os.EOL);
923924
command_1.issueCommand('set-output', { name }, value);
924925
}
925926
exports.setOutput = setOutput;
@@ -1550,7 +1551,9 @@ class HttpClient {
15501551
maxSockets: maxSockets,
15511552
keepAlive: this._keepAlive,
15521553
proxy: {
1553-
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`,
1554+
...((proxyUrl.username || proxyUrl.password) && {
1555+
proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`
1556+
}),
15541557
host: proxyUrl.hostname,
15551558
port: proxyUrl.port
15561559
}

dist/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-ruby-pkgs",
3-
"version": "1.25.0",
3+
"version": "1.26.0",
44
"description": "Install packages and update builds tools for Ruby",
55
"main": "index.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
"author": "MSP-Greg",
2424
"license": "MIT",
2525
"dependencies": {
26-
"@actions/core": "^1.2.6",
27-
"@actions/http-client": "^1.0.9"
26+
"@actions/core": "^1.2.7",
27+
"@actions/http-client": "^1.0.11"
2828
}
2929
}

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-ruby-pkgs",
3-
"version": "1.25.0",
3+
"version": "1.26.0",
44
"description": "Install packages and update builds tools for Ruby",
55
"main": "index.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
"author": "MSP-Greg",
2424
"license": "MIT",
2525
"dependencies": {
26-
"@actions/core": "^1.2.6",
27-
"@actions/http-client": "^1.0.9"
26+
"@actions/core": "^1.2.7",
27+
"@actions/http-client": "^1.0.11"
2828
}
2929
}

yarn.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# yarn lockfile v1
33

44

5-
"@actions/core@^1.2.6":
6-
version "1.2.6"
7-
resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.2.6.tgz#a78d49f41a4def18e88ce47c2cac615d5694bf09"
8-
integrity sha512-ZQYitnqiyBc3D+k7LsgSBmMDVkOVidaagDG7j3fOym77jNunWRuYx7VSHa9GNfFZh+zh61xsCjRj4JxMZlDqTA==
5+
"@actions/core@^1.2.7":
6+
version "1.2.7"
7+
resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.2.7.tgz#594f8c45b213f0146e4be7eda8ae5cf4e198e5ab"
8+
integrity sha512-kzLFD5BgEvq6ubcxdgPbRKGD2Qrgya/5j+wh4LZzqT915I0V3rED+MvjH6NXghbvk1MXknpNNQ3uKjXSEN00Ig==
99

10-
"@actions/http-client@^1.0.9":
11-
version "1.0.9"
12-
resolved "https://registry.yarnpkg.com/@actions/http-client/-/http-client-1.0.9.tgz#af1947d020043dbc6a3b4c5918892095c30ffb52"
13-
integrity sha512-0O4SsJ7q+MK0ycvXPl2e6bMXV7dxAXOGjrXS1eTF9s2S401Tp6c/P3c3Joz04QefC1J6Gt942Wl2jbm3f4mLcg==
10+
"@actions/http-client@^1.0.11":
11+
version "1.0.11"
12+
resolved "https://registry.yarnpkg.com/@actions/http-client/-/http-client-1.0.11.tgz#c58b12e9aa8b159ee39e7dd6cbd0e91d905633c0"
13+
integrity sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==
1414
dependencies:
1515
tunnel "0.0.6"
1616

0 commit comments

Comments
 (0)