From 2c2fe6312412ba7c916e90586f3947011e68a7f8 Mon Sep 17 00:00:00 2001 From: "wraith-ci[bot]" Date: Sat, 17 Aug 2024 02:10:30 +0000 Subject: [PATCH] chore: regenerate artifact --- packages/action/dist/index.cjs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/packages/action/dist/index.cjs b/packages/action/dist/index.cjs index dd5279d..b966448 100644 --- a/packages/action/dist/index.cjs +++ b/packages/action/dist/index.cjs @@ -2253,6 +2253,7 @@ var require_decodeText = __commonJS({ return decoders.utf8; case "latin1": case "ascii": + // TODO: Make these a separate, strict decoder? case "us-ascii": case "iso-8859-1": case "iso8859-1": @@ -2952,6 +2953,7 @@ var require_basename = __commonJS({ for (var i = path6.length - 1; i >= 0; --i) { switch (path6.charCodeAt(i)) { case 47: + // '/' case 92: path6 = path6.slice(i + 1); return path6 === ".." || path6 === "." ? "" : path6; @@ -4186,7 +4188,21 @@ var require_util2 = __commonJS({ return referrerOrigin; } case "strict-origin": + // eslint-disable-line + /** + * 1. If referrerURL is a potentially trustworthy URL and + * request’s current URL is not a potentially trustworthy URL, + * then return no referrer. + * 2. Return referrerOrigin + */ case "no-referrer-when-downgrade": + // eslint-disable-line + /** + * 1. If referrerURL is a potentially trustworthy URL and + * request’s current URL is not a potentially trustworthy URL, + * then return no referrer. + * 2. Return referrerOrigin + */ default: return isNonPotentiallyTrustWorthy ? "no-referrer" : referrerOrigin; } @@ -24634,6 +24650,8 @@ var require_semver = __commonJS({ this.inc("patch", identifier, identifierBase); this.inc("pre", identifier, identifierBase); break; + // If the input is a non-prerelease version, this acts the same as + // prepatch. case "prerelease": if (this.prerelease.length === 0) { this.inc("patch", identifier, identifierBase); @@ -24661,6 +24679,8 @@ var require_semver = __commonJS({ } this.prerelease = []; break; + // This probably shouldn't be used publicly. + // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction. case "pre": { const base = Number(identifierBase) ? 1 : 0; if (!identifier && identifierBase === false) { @@ -25704,6 +25724,7 @@ var require_min_version = __commonJS({ compver.prerelease.push(0); } compver.raw = compver.format(); + /* fallthrough */ case "": case ">=": if (!setMin || gt(compver, setMin)) { @@ -25713,6 +25734,7 @@ var require_min_version = __commonJS({ case "<": case "<=": break; + /* istanbul ignore next */ default: throw new Error(`Unexpected operation: ${comparator.operator}`); }