Skip to content

Commit f23ab1d

Browse files
authored
build: change ssh socket action to info (#35)
* JEST-430 build: change ssh socket action to info * JEST-430 build: update other file
1 parent 8074b7e commit f23ab1d

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

dist/index.js

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap
1+
/******/ (() => { // webpackBootstrap
22
/******/ var __webpack_modules__ = ({
33

4-
/***/ 604:
4+
/***/ 350:
55
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
66

77
"use strict";
@@ -15,7 +15,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
1515
};
1616
Object.defineProperty(exports, "__esModule", ({ value: true }));
1717
const os = __importStar(__nccwpck_require__(37));
18-
const utils_1 = __nccwpck_require__(245);
18+
const utils_1 = __nccwpck_require__(369);
1919
/**
2020
* Commands
2121
*
@@ -87,7 +87,7 @@ function escapeProperty(s) {
8787

8888
/***/ }),
8989

90-
/***/ 127:
90+
/***/ 24:
9191
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
9292

9393
"use strict";
@@ -109,9 +109,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
109109
return result;
110110
};
111111
Object.defineProperty(exports, "__esModule", ({ value: true }));
112-
const command_1 = __nccwpck_require__(604);
113-
const file_command_1 = __nccwpck_require__(352);
114-
const utils_1 = __nccwpck_require__(245);
112+
const command_1 = __nccwpck_require__(350);
113+
const file_command_1 = __nccwpck_require__(466);
114+
const utils_1 = __nccwpck_require__(369);
115115
const os = __importStar(__nccwpck_require__(37));
116116
const path = __importStar(__nccwpck_require__(17));
117117
/**
@@ -332,7 +332,7 @@ exports.getState = getState;
332332

333333
/***/ }),
334334

335-
/***/ 352:
335+
/***/ 466:
336336
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
337337

338338
"use strict";
@@ -350,7 +350,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
350350
/* eslint-disable @typescript-eslint/no-explicit-any */
351351
const fs = __importStar(__nccwpck_require__(147));
352352
const os = __importStar(__nccwpck_require__(37));
353-
const utils_1 = __nccwpck_require__(245);
353+
const utils_1 = __nccwpck_require__(369);
354354
function issueCommand(command, message) {
355355
const filePath = process.env[`GITHUB_${command}`];
356356
if (!filePath) {
@@ -368,7 +368,7 @@ exports.issueCommand = issueCommand;
368368

369369
/***/ }),
370370

371-
/***/ 245:
371+
/***/ 369:
372372
/***/ ((__unused_webpack_module, exports) => {
373373

374374
"use strict";
@@ -467,7 +467,7 @@ module.exports = require("path");
467467
var __webpack_exports__ = {};
468468
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
469469
(() => {
470-
const core = __nccwpck_require__(127);
470+
const core = __nccwpck_require__(24);
471471

472472
const { execSync } = __nccwpck_require__(81);
473473

@@ -490,7 +490,7 @@ try {
490490
execSync(`ssh-agent -a "${socketPath}"`)
491491
} catch (e) {
492492
if (e.message.includes('Address already in use')) {
493-
core.warning('Agent already exists on sock. Skipping creation.');
493+
core.info('Agent already exists on sock. Skipping creation.');
494494
} else {
495495
core.setFailed(e.message);
496496
}
@@ -515,5 +515,4 @@ core.info('Done; exiting.');
515515

516516
module.exports = __webpack_exports__;
517517
/******/ })()
518-
;
519-
//# sourceMappingURL=index.js.map
518+
;

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ try {
2121
execSync(`ssh-agent -a "${socketPath}"`)
2222
} catch (e) {
2323
if (e.message.includes('Address already in use')) {
24-
core.warning('Agent already exists on sock. Skipping creation.');
24+
core.info('Agent already exists on sock. Skipping creation.');
2525
} else {
2626
core.setFailed(e.message);
2727
}

0 commit comments

Comments
 (0)