Skip to content

Commit

Permalink
chore: regenerate artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
wraith-ci[bot] committed Aug 17, 2024
1 parent b5328b7 commit 2c2fe63
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions packages/action/dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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)) {
Expand All @@ -25713,6 +25734,7 @@ var require_min_version = __commonJS({
case "<":
case "<=":
break;
/* istanbul ignore next */
default:
throw new Error(`Unexpected operation: ${comparator.operator}`);
}
Expand Down

0 comments on commit 2c2fe63

Please sign in to comment.