Skip to content

Commit ed6be7d

Browse files
chore(deps): bump @actions/core to v1.9.0 (#73)
1 parent 6f01481 commit ed6be7d

File tree

3 files changed

+82
-8
lines changed

3 files changed

+82
-8
lines changed

dist/index.js

+72
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,13 @@ Object.defineProperty(exports, "summary", ({ enumerable: true, get: function ()
425425
*/
426426
var summary_2 = __nccwpck_require__(1327);
427427
Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } }));
428+
/**
429+
* Path exports
430+
*/
431+
var path_utils_1 = __nccwpck_require__(2981);
432+
Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } }));
433+
Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } }));
434+
Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } }));
428435
//# sourceMappingURL=core.js.map
429436

430437
/***/ }),
@@ -562,6 +569,71 @@ exports.OidcClient = OidcClient;
562569

563570
/***/ }),
564571

572+
/***/ 2981:
573+
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
574+
575+
"use strict";
576+
577+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
578+
if (k2 === undefined) k2 = k;
579+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
580+
}) : (function(o, m, k, k2) {
581+
if (k2 === undefined) k2 = k;
582+
o[k2] = m[k];
583+
}));
584+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
585+
Object.defineProperty(o, "default", { enumerable: true, value: v });
586+
}) : function(o, v) {
587+
o["default"] = v;
588+
});
589+
var __importStar = (this && this.__importStar) || function (mod) {
590+
if (mod && mod.__esModule) return mod;
591+
var result = {};
592+
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
593+
__setModuleDefault(result, mod);
594+
return result;
595+
};
596+
Object.defineProperty(exports, "__esModule", ({ value: true }));
597+
exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0;
598+
const path = __importStar(__nccwpck_require__(1017));
599+
/**
600+
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
601+
* replaced with /.
602+
*
603+
* @param pth. Path to transform.
604+
* @return string Posix path.
605+
*/
606+
function toPosixPath(pth) {
607+
return pth.replace(/[\\]/g, '/');
608+
}
609+
exports.toPosixPath = toPosixPath;
610+
/**
611+
* toWin32Path converts the given path to the win32 form. On Linux, / will be
612+
* replaced with \\.
613+
*
614+
* @param pth. Path to transform.
615+
* @return string Win32 path.
616+
*/
617+
function toWin32Path(pth) {
618+
return pth.replace(/[/]/g, '\\');
619+
}
620+
exports.toWin32Path = toWin32Path;
621+
/**
622+
* toPlatformPath converts the given path to a platform-specific path. It does
623+
* this by replacing instances of / and \ with the platform-specific path
624+
* separator.
625+
*
626+
* @param pth The path to platformize.
627+
* @return string The platform-specific path.
628+
*/
629+
function toPlatformPath(pth) {
630+
return pth.replace(/[/\\]/g, path.sep);
631+
}
632+
exports.toPlatformPath = toPlatformPath;
633+
//# sourceMappingURL=path-utils.js.map
634+
635+
/***/ }),
636+
565637
/***/ 1327:
566638
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
567639

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
},
1919
"homepage": "https://github.com/HenryGriffiths/pr_lint#readme",
2020
"dependencies": {
21-
"@actions/core": "1.8.2",
2221
"@actions/github": "5.0.3"
2322
},
2423
"devDependencies": {
24+
"@actions/core": "1.9.0",
2525
"@vercel/ncc": "0.34.0"
2626
}
2727
}

0 commit comments

Comments
 (0)