Skip to content

Commit 0f986c4

Browse files
[Snyk] Upgrade @actions/core from 1.8.2 to 1.9.0 (#81)
* fix: upgrade @actions/core from 1.8.2 to 1.9.0 Snyk has created this PR to upgrade @actions/core from 1.8.2 to 1.9.0. See this package in npm: https://www.npmjs.com/package/@actions/core See this project in Snyk: https://app.snyk.io/org/nick-invision/project/b960b937-66a3-4aae-9cb2-321f49c8750b?utm_source=github&utm_medium=referral&page=upgrade-pr * patch: regenerate dist Co-authored-by: Nick Fields <[email protected]>
1 parent 3dad7de commit 0f986c4

File tree

3 files changed

+80
-8
lines changed

3 files changed

+80
-8
lines changed

dist/index.js

+72
Original file line numberDiff line numberDiff line change
@@ -1956,6 +1956,13 @@ Object.defineProperty(exports, "summary", { enumerable: true, get: function () {
19561956
*/
19571957
var summary_2 = __webpack_require__(665);
19581958
Object.defineProperty(exports, "markdownSummary", { enumerable: true, get: function () { return summary_2.markdownSummary; } });
1959+
/**
1960+
* Path exports
1961+
*/
1962+
var path_utils_1 = __webpack_require__(573);
1963+
Object.defineProperty(exports, "toPosixPath", { enumerable: true, get: function () { return path_utils_1.toPosixPath; } });
1964+
Object.defineProperty(exports, "toWin32Path", { enumerable: true, get: function () { return path_utils_1.toWin32Path; } });
1965+
Object.defineProperty(exports, "toPlatformPath", { enumerable: true, get: function () { return path_utils_1.toPlatformPath; } });
19591966
//# sourceMappingURL=core.js.map
19601967

19611968
/***/ }),
@@ -2048,6 +2055,71 @@ exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHand
20482055

20492056
/***/ }),
20502057

2058+
/***/ 573:
2059+
/***/ (function(__unusedmodule, exports, __webpack_require__) {
2060+
2061+
"use strict";
2062+
2063+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2064+
if (k2 === undefined) k2 = k;
2065+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
2066+
}) : (function(o, m, k, k2) {
2067+
if (k2 === undefined) k2 = k;
2068+
o[k2] = m[k];
2069+
}));
2070+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
2071+
Object.defineProperty(o, "default", { enumerable: true, value: v });
2072+
}) : function(o, v) {
2073+
o["default"] = v;
2074+
});
2075+
var __importStar = (this && this.__importStar) || function (mod) {
2076+
if (mod && mod.__esModule) return mod;
2077+
var result = {};
2078+
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
2079+
__setModuleDefault(result, mod);
2080+
return result;
2081+
};
2082+
Object.defineProperty(exports, "__esModule", { value: true });
2083+
exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0;
2084+
const path = __importStar(__webpack_require__(622));
2085+
/**
2086+
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
2087+
* replaced with /.
2088+
*
2089+
* @param pth. Path to transform.
2090+
* @return string Posix path.
2091+
*/
2092+
function toPosixPath(pth) {
2093+
return pth.replace(/[\\]/g, '/');
2094+
}
2095+
exports.toPosixPath = toPosixPath;
2096+
/**
2097+
* toWin32Path converts the given path to the win32 form. On Linux, / will be
2098+
* replaced with \\.
2099+
*
2100+
* @param pth. Path to transform.
2101+
* @return string Win32 path.
2102+
*/
2103+
function toWin32Path(pth) {
2104+
return pth.replace(/[/]/g, '\\');
2105+
}
2106+
exports.toWin32Path = toWin32Path;
2107+
/**
2108+
* toPlatformPath converts the given path to a platform-specific path. It does
2109+
* this by replacing instances of / and \ with the platform-specific path
2110+
* separator.
2111+
*
2112+
* @param pth The path to platformize.
2113+
* @return string The platform-specific path.
2114+
*/
2115+
function toPlatformPath(pth) {
2116+
return pth.replace(/[/\\]/g, path.sep);
2117+
}
2118+
exports.toPlatformPath = toPlatformPath;
2119+
//# sourceMappingURL=path-utils.js.map
2120+
2121+
/***/ }),
2122+
20512123
/***/ 605:
20522124
/***/ (function(module) {
20532125

package-lock.json

+7-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
@@ -22,7 +22,7 @@
2222
},
2323
"homepage": "https://github.com/nick-invision/retry#readme",
2424
"dependencies": {
25-
"@actions/core": "^1.8.2",
25+
"@actions/core": "^1.9.0",
2626
"milliseconds": "^1.0.3",
2727
"tree-kill": "^1.2.2"
2828
},

0 commit comments

Comments
 (0)