diff --git a/dist/licenses.txt b/dist/licenses.txt index 74d152b..1633867 100644 --- a/dist/licenses.txt +++ b/dist/licenses.txt @@ -1,6 +1,6 @@ THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THIS PRODUCT -The following software may be included in this product: @actions/cache (3.2.3) +The following software may be included in this product: @actions/cache (3.2.4) This software contains the following license and notice below: The MIT License (MIT) @@ -412,7 +412,7 @@ IN THE SOFTWARE. --- -The following software may be included in this product: @types/node (20.11.0) +The following software may be included in this product: @types/node (20.11.16) This software contains the following license and notice below: MIT License @@ -1021,18 +1021,30 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --- -The following software may be included in this product: uuid (8.3.2) +The following software may be included in this product: uuid (3.4.0) This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) 2010-2020 Robert Kieffer and other contributors +Copyright (c) 2010-2016 Robert Kieffer and other contributors -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. --- @@ -1740,7 +1752,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --- -The following software may be included in this product: tslib (2.6.2) +The following software may be included in this product: tslib (1.14.1) This software contains the following license and notice below: Copyright (c) Microsoft Corporation. diff --git a/dist/main.js b/dist/main.js index 445260d..dd67c7e 100644 --- a/dist/main.js +++ b/dist/main.js @@ -25819,9 +25819,9 @@ var require_uuid = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/constants.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/constants.js var require_constants5 = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/constants.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/constants.js"(exports2) { "use strict"; Object.defineProperty(exports2, "__esModule", { value: true }); exports2.ManifestFilename = exports2.TarFilename = exports2.SystemTarPathOnWindows = exports2.GnuTarPathOnWindows = exports2.SocketTimeout = exports2.DefaultRetryDelay = exports2.DefaultRetryAttempts = exports2.ArchiveToolType = exports2.CompressionMethod = exports2.CacheFilename = void 0; @@ -25851,9 +25851,9 @@ var require_constants5 = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheUtils.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheUtils.js var require_cacheUtils = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheUtils.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheUtils.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -26074,7 +26074,10 @@ var require_cacheUtils = __commonJS({ exports2.assertDefined = assertDefined; function isGhes() { const ghUrl = new URL(process.env["GITHUB_SERVER_URL"] || "https://github.com"); - return ghUrl.hostname.toUpperCase() !== "GITHUB.COM"; + const hostname = ghUrl.hostname.trimEnd().toUpperCase(); + const isGitHubHost = hostname === "GITHUB.COM"; + const isGheHost = hostname.endsWith(".GHE.COM") || hostname.endsWith(".GHE.LOCALHOST"); + return !isGitHubHost && !isGheHost; } exports2.isGhes = isGhes; } @@ -74683,9 +74686,9 @@ var init_src12 = __esm({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/requestUtils.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/requestUtils.js var require_requestUtils = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/requestUtils.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/requestUtils.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -74856,9 +74859,9 @@ var require_requestUtils = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/downloadUtils.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/downloadUtils.js var require_downloadUtils = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/downloadUtils.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/downloadUtils.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -75221,9 +75224,9 @@ var require_downloadUtils = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/options.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/options.js var require_options2 = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/options.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/options.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -75323,9 +75326,9 @@ var require_options2 = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheHttpClient.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheHttpClient.js var require_cacheHttpClient = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheHttpClient.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheHttpClient.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -75597,9 +75600,9 @@ Other caches with similar key:`); } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/tar.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/tar.js var require_tar = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/tar.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/tar.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -75845,9 +75848,9 @@ var require_tar = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/cache.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/cache.js var require_cache2 = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/cache.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/cache.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) diff --git a/dist/post.js b/dist/post.js index 3a09f46..5307e61 100644 --- a/dist/post.js +++ b/dist/post.js @@ -25024,9 +25024,9 @@ var require_uuid = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/constants.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/constants.js var require_constants5 = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/constants.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/constants.js"(exports2) { "use strict"; Object.defineProperty(exports2, "__esModule", { value: true }); exports2.ManifestFilename = exports2.TarFilename = exports2.SystemTarPathOnWindows = exports2.GnuTarPathOnWindows = exports2.SocketTimeout = exports2.DefaultRetryDelay = exports2.DefaultRetryAttempts = exports2.ArchiveToolType = exports2.CompressionMethod = exports2.CacheFilename = void 0; @@ -25056,9 +25056,9 @@ var require_constants5 = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheUtils.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheUtils.js var require_cacheUtils = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheUtils.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheUtils.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -25279,7 +25279,10 @@ var require_cacheUtils = __commonJS({ exports2.assertDefined = assertDefined; function isGhes() { const ghUrl = new URL(process.env["GITHUB_SERVER_URL"] || "https://github.com"); - return ghUrl.hostname.toUpperCase() !== "GITHUB.COM"; + const hostname = ghUrl.hostname.trimEnd().toUpperCase(); + const isGitHubHost = hostname === "GITHUB.COM"; + const isGheHost = hostname.endsWith(".GHE.COM") || hostname.endsWith(".GHE.LOCALHOST"); + return !isGitHubHost && !isGheHost; } exports2.isGhes = isGhes; } @@ -73888,9 +73891,9 @@ var init_src12 = __esm({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/requestUtils.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/requestUtils.js var require_requestUtils = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/requestUtils.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/requestUtils.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -74061,9 +74064,9 @@ var require_requestUtils = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/downloadUtils.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/downloadUtils.js var require_downloadUtils = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/downloadUtils.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/downloadUtils.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -74426,9 +74429,9 @@ var require_downloadUtils = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/options.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/options.js var require_options2 = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/options.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/options.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -74528,9 +74531,9 @@ var require_options2 = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheHttpClient.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheHttpClient.js var require_cacheHttpClient = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/cacheHttpClient.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/cacheHttpClient.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -74802,9 +74805,9 @@ Other caches with similar key:`); } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/tar.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/tar.js var require_tar = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/internal/tar.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/internal/tar.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0) @@ -75050,9 +75053,9 @@ var require_tar = __commonJS({ } }); -// node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/cache.js +// node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/cache.js var require_cache2 = __commonJS({ - "node_modules/.pnpm/@actions+cache@3.2.3/node_modules/@actions/cache/lib/cache.js"(exports2) { + "node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/cache.js"(exports2) { "use strict"; var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { if (k2 === void 0)