Skip to content

Commit 0db771b

Browse files
build(deps): bump @actions/core from 1.8.2 to 1.9.0 (#500)
* build(deps): bump @actions/core from 1.8.2 to 1.9.0 Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.8.2 to 1.9.0. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) --- updated-dependencies: - dependency-name: "@actions/core" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * update dist Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kamil Samigullin <[email protected]>
1 parent 5724191 commit 0db771b

File tree

4 files changed

+152
-8
lines changed

4 files changed

+152
-8
lines changed

dist/post_run/index.js

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,6 +1658,13 @@ Object.defineProperty(exports, "summary", ({ enumerable: true, get: function ()
16581658
*/
16591659
var summary_2 = __nccwpck_require__(1327);
16601660
Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } }));
1661+
/**
1662+
* Path exports
1663+
*/
1664+
var path_utils_1 = __nccwpck_require__(2981);
1665+
Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } }));
1666+
Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } }));
1667+
Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } }));
16611668
//# sourceMappingURL=core.js.map
16621669

16631670
/***/ }),
@@ -1795,6 +1802,71 @@ exports.OidcClient = OidcClient;
17951802

17961803
/***/ }),
17971804

1805+
/***/ 2981:
1806+
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
1807+
1808+
"use strict";
1809+
1810+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
1811+
if (k2 === undefined) k2 = k;
1812+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
1813+
}) : (function(o, m, k, k2) {
1814+
if (k2 === undefined) k2 = k;
1815+
o[k2] = m[k];
1816+
}));
1817+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
1818+
Object.defineProperty(o, "default", { enumerable: true, value: v });
1819+
}) : function(o, v) {
1820+
o["default"] = v;
1821+
});
1822+
var __importStar = (this && this.__importStar) || function (mod) {
1823+
if (mod && mod.__esModule) return mod;
1824+
var result = {};
1825+
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
1826+
__setModuleDefault(result, mod);
1827+
return result;
1828+
};
1829+
Object.defineProperty(exports, "__esModule", ({ value: true }));
1830+
exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0;
1831+
const path = __importStar(__nccwpck_require__(1017));
1832+
/**
1833+
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
1834+
* replaced with /.
1835+
*
1836+
* @param pth. Path to transform.
1837+
* @return string Posix path.
1838+
*/
1839+
function toPosixPath(pth) {
1840+
return pth.replace(/[\\]/g, '/');
1841+
}
1842+
exports.toPosixPath = toPosixPath;
1843+
/**
1844+
* toWin32Path converts the given path to the win32 form. On Linux, / will be
1845+
* replaced with \\.
1846+
*
1847+
* @param pth. Path to transform.
1848+
* @return string Win32 path.
1849+
*/
1850+
function toWin32Path(pth) {
1851+
return pth.replace(/[/]/g, '\\');
1852+
}
1853+
exports.toWin32Path = toWin32Path;
1854+
/**
1855+
* toPlatformPath converts the given path to a platform-specific path. It does
1856+
* this by replacing instances of / and \ with the platform-specific path
1857+
* separator.
1858+
*
1859+
* @param pth The path to platformize.
1860+
* @return string The platform-specific path.
1861+
*/
1862+
function toPlatformPath(pth) {
1863+
return pth.replace(/[/\\]/g, path.sep);
1864+
}
1865+
exports.toPlatformPath = toPlatformPath;
1866+
//# sourceMappingURL=path-utils.js.map
1867+
1868+
/***/ }),
1869+
17981870
/***/ 1327:
17991871
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
18001872

dist/run/index.js

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,6 +1658,13 @@ Object.defineProperty(exports, "summary", ({ enumerable: true, get: function ()
16581658
*/
16591659
var summary_2 = __nccwpck_require__(1327);
16601660
Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } }));
1661+
/**
1662+
* Path exports
1663+
*/
1664+
var path_utils_1 = __nccwpck_require__(2981);
1665+
Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } }));
1666+
Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } }));
1667+
Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } }));
16611668
//# sourceMappingURL=core.js.map
16621669

16631670
/***/ }),
@@ -1795,6 +1802,71 @@ exports.OidcClient = OidcClient;
17951802

17961803
/***/ }),
17971804

1805+
/***/ 2981:
1806+
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
1807+
1808+
"use strict";
1809+
1810+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
1811+
if (k2 === undefined) k2 = k;
1812+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
1813+
}) : (function(o, m, k, k2) {
1814+
if (k2 === undefined) k2 = k;
1815+
o[k2] = m[k];
1816+
}));
1817+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
1818+
Object.defineProperty(o, "default", { enumerable: true, value: v });
1819+
}) : function(o, v) {
1820+
o["default"] = v;
1821+
});
1822+
var __importStar = (this && this.__importStar) || function (mod) {
1823+
if (mod && mod.__esModule) return mod;
1824+
var result = {};
1825+
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
1826+
__setModuleDefault(result, mod);
1827+
return result;
1828+
};
1829+
Object.defineProperty(exports, "__esModule", ({ value: true }));
1830+
exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0;
1831+
const path = __importStar(__nccwpck_require__(1017));
1832+
/**
1833+
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
1834+
* replaced with /.
1835+
*
1836+
* @param pth. Path to transform.
1837+
* @return string Posix path.
1838+
*/
1839+
function toPosixPath(pth) {
1840+
return pth.replace(/[\\]/g, '/');
1841+
}
1842+
exports.toPosixPath = toPosixPath;
1843+
/**
1844+
* toWin32Path converts the given path to the win32 form. On Linux, / will be
1845+
* replaced with \\.
1846+
*
1847+
* @param pth. Path to transform.
1848+
* @return string Win32 path.
1849+
*/
1850+
function toWin32Path(pth) {
1851+
return pth.replace(/[/]/g, '\\');
1852+
}
1853+
exports.toWin32Path = toWin32Path;
1854+
/**
1855+
* toPlatformPath converts the given path to a platform-specific path. It does
1856+
* this by replacing instances of / and \ with the platform-specific path
1857+
* separator.
1858+
*
1859+
* @param pth The path to platformize.
1860+
* @return string The platform-specific path.
1861+
*/
1862+
function toPlatformPath(pth) {
1863+
return pth.replace(/[/\\]/g, path.sep);
1864+
}
1865+
exports.toPlatformPath = toPlatformPath;
1866+
//# sourceMappingURL=path-utils.js.map
1867+
1868+
/***/ }),
1869+
17981870
/***/ 1327:
17991871
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
18001872

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"license": "MIT",
2626
"dependencies": {
2727
"@actions/cache": "^2.0.6",
28-
"@actions/core": "^1.8.2",
28+
"@actions/core": "^1.9.0",
2929
"@actions/exec": "^1.1.1",
3030
"@actions/github": "^5.0.3",
3131
"@actions/http-client": "^2.0.1",

0 commit comments

Comments
 (0)