-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Workflow Bot -- Update ALL Dependencies (main) (#1906)
Co-authored-by: Jason3S <[email protected]>
- Loading branch information
1 parent
91cd27c
commit e5a7002
Showing
4 changed files
with
247 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -542,9 +542,9 @@ var require_file_command = __commonJS({ | |
} | ||
}); | ||
|
||
// ../node_modules/.pnpm/@[email protected].1/node_modules/@actions/http-client/lib/proxy.js | ||
// ../node_modules/.pnpm/@[email protected].2/node_modules/@actions/http-client/lib/proxy.js | ||
var require_proxy = __commonJS({ | ||
"../node_modules/.pnpm/@[email protected].1/node_modules/@actions/http-client/lib/proxy.js"(exports2) { | ||
"../node_modules/.pnpm/@[email protected].2/node_modules/@actions/http-client/lib/proxy.js"(exports2) { | ||
"use strict"; | ||
Object.defineProperty(exports2, "__esModule", { value: true }); | ||
exports2.checkBypass = exports2.getProxyUrl = void 0; | ||
|
@@ -562,10 +562,10 @@ var require_proxy = __commonJS({ | |
})(); | ||
if (proxyVar) { | ||
try { | ||
return new URL(proxyVar); | ||
return new DecodedURL(proxyVar); | ||
} catch (_a3) { | ||
if (!proxyVar.startsWith("http://") && !proxyVar.startsWith("https://")) | ||
return new URL(`http://${proxyVar}`); | ||
return new DecodedURL(`http://${proxyVar}`); | ||
} | ||
} else { | ||
return void 0; | ||
|
@@ -608,6 +608,19 @@ var require_proxy = __commonJS({ | |
const hostLower = host.toLowerCase(); | ||
return hostLower === "localhost" || hostLower.startsWith("127.") || hostLower.startsWith("[::1]") || hostLower.startsWith("[0:0:0:0:0:0:0:1]"); | ||
} | ||
var DecodedURL = class extends URL { | ||
constructor(url2, base) { | ||
super(url2, base); | ||
this._decodedUsername = decodeURIComponent(super.username); | ||
this._decodedPassword = decodeURIComponent(super.password); | ||
} | ||
get username() { | ||
return this._decodedUsername; | ||
} | ||
get password() { | ||
return this._decodedPassword; | ||
} | ||
}; | ||
} | ||
}); | ||
|
||
|
@@ -2240,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": | ||
|
@@ -2939,6 +2953,7 @@ var require_basename = __commonJS({ | |
for (var i = path26.length - 1; i >= 0; --i) { | ||
switch (path26.charCodeAt(i)) { | ||
case 47: | ||
// '/' | ||
case 92: | ||
path26 = path26.slice(i + 1); | ||
return path26 === ".." || path26 === "." ? "" : path26; | ||
|
@@ -4173,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; | ||
} | ||
|
@@ -17584,9 +17613,9 @@ var require_undici = __commonJS({ | |
} | ||
}); | ||
|
||
// ../node_modules/.pnpm/@[email protected].1/node_modules/@actions/http-client/lib/index.js | ||
// ../node_modules/.pnpm/@[email protected].2/node_modules/@actions/http-client/lib/index.js | ||
var require_lib = __commonJS({ | ||
"../node_modules/.pnpm/@[email protected].1/node_modules/@actions/http-client/lib/index.js"(exports2) { | ||
"../node_modules/.pnpm/@[email protected].2/node_modules/@actions/http-client/lib/index.js"(exports2) { | ||
"use strict"; | ||
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) { | ||
if (k2 === void 0) k2 = k; | ||
|
@@ -18203,9 +18232,9 @@ var require_lib = __commonJS({ | |
} | ||
}); | ||
|
||
// ../node_modules/.pnpm/@[email protected].1/node_modules/@actions/http-client/lib/auth.js | ||
// ../node_modules/.pnpm/@[email protected].2/node_modules/@actions/http-client/lib/auth.js | ||
var require_auth = __commonJS({ | ||
"../node_modules/.pnpm/@[email protected].1/node_modules/@actions/http-client/lib/auth.js"(exports2) { | ||
"../node_modules/.pnpm/@[email protected].2/node_modules/@actions/http-client/lib/auth.js"(exports2) { | ||
"use strict"; | ||
var __awaiter = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) { | ||
function adopt(value) { | ||
|
@@ -22451,6 +22480,7 @@ var require_esprima = __commonJS({ | |
var expr = elementName; | ||
qualifiedName = getQualifiedElementName(expr.object) + "." + getQualifiedElementName(expr.property); | ||
break; | ||
/* istanbul ignore next */ | ||
default: | ||
break; | ||
} | ||
|
@@ -28458,9 +28488,11 @@ var require_src = __commonJS({ | |
case 3: | ||
array[left + 3] = array[left + 2]; | ||
results[left + 3] = results[left + 2]; | ||
/* falls through */ | ||
case 2: | ||
array[left + 2] = array[left + 1]; | ||
results[left + 2] = results[left + 1]; | ||
/* falls through */ | ||
case 1: | ||
array[left + 1] = array[left]; | ||
results[left + 1] = results[left]; | ||
|
@@ -29886,8 +29918,11 @@ var require_stringify2 = __commonJS({ | |
case "boolean": | ||
case "null": | ||
return String(value); | ||
// If the type is 'object', we might be dealing with an object or an array or | ||
// null. | ||
case "object": | ||
return isArray3(value) ? array_stringify(value, gap) : object_stringify(value, gap); | ||
// undefined | ||
default: | ||
} | ||
} | ||
|
@@ -33698,6 +33733,7 @@ var require_resolve_props = __commonJS({ | |
hasSpace = false; | ||
break; | ||
} | ||
// else fallthrough | ||
default: | ||
onError(token, "UNEXPECTED_TOKEN", `Unexpected ${token.type} token`); | ||
atNewline = false; | ||
|
@@ -34396,6 +34432,7 @@ var require_resolve_block_scalar = __commonJS({ | |
switch (token.type) { | ||
case "space": | ||
hasSpace = true; | ||
// fallthrough | ||
case "newline": | ||
length += token.source.length; | ||
break; | ||
|
@@ -34411,6 +34448,7 @@ var require_resolve_block_scalar = __commonJS({ | |
onError(token, "UNEXPECTED_TOKEN", token.message); | ||
length += token.source.length; | ||
break; | ||
/* istanbul ignore next should not happen */ | ||
default: { | ||
const message = `Unexpected token in block scalar header: ${token.type}`; | ||
onError(token, "UNEXPECTED_TOKEN", message); | ||
|
@@ -34460,6 +34498,7 @@ var require_resolve_flow_scalar = __commonJS({ | |
_type = Scalar.Scalar.QUOTE_DOUBLE; | ||
value = doubleQuotedValue(source, _onError); | ||
break; | ||
/* istanbul ignore next should not happen */ | ||
default: | ||
onError(scalar, "UNEXPECTED_TOKEN", `Expected a flow scalar value, but found: ${type}`); | ||
return { | ||
|
@@ -34481,6 +34520,7 @@ var require_resolve_flow_scalar = __commonJS({ | |
function plainValue(source, onError) { | ||
let badChar = ""; | ||
switch (source[0]) { | ||
/* istanbul ignore next should not happen */ | ||
case " ": | ||
badChar = "a tab character"; | ||
break; | ||
|
@@ -35724,6 +35764,7 @@ var require_lexer = __commonJS({ | |
switch (line[n]) { | ||
case "#": | ||
yield* this.pushCount(line.length - n); | ||
// fallthrough | ||
case void 0: | ||
yield* this.pushNewline(); | ||
return yield* this.parseLineStart(); | ||
|
@@ -35819,6 +35860,7 @@ var require_lexer = __commonJS({ | |
return "flow"; | ||
} | ||
} | ||
// fallthrough | ||
default: | ||
this.flowKey = false; | ||
return yield* this.parsePlainScalar(); | ||
|
@@ -35896,6 +35938,7 @@ var require_lexer = __commonJS({ | |
if (next === "\n") | ||
break; | ||
} | ||
// fallthrough | ||
default: | ||
break loop; | ||
} | ||
|
@@ -36013,7 +36056,9 @@ var require_lexer = __commonJS({ | |
case "&": | ||
return (yield* this.pushUntil(isNotAnchorChar)) + (yield* this.pushSpaces(true)) + (yield* this.pushIndicators()); | ||
case "-": | ||
// this is an error | ||
case "?": | ||
// this is an error outside flow collections | ||
case ":": { | ||
const inFlow = this.flowLevel > 0; | ||
const ch1 = this.charAt(1); | ||
|
@@ -36161,6 +36206,7 @@ var require_parser = __commonJS({ | |
} | ||
case "block-seq": | ||
return parent.items[parent.items.length - 1].start; | ||
/* istanbul ignore next should not happen */ | ||
default: | ||
return []; | ||
} | ||
|
@@ -36394,6 +36440,7 @@ var require_parser = __commonJS({ | |
Object.assign(it, { key: token, sep: [] }); | ||
return; | ||
} | ||
/* istanbul ignore next should not happen */ | ||
default: | ||
yield* this.pop(); | ||
yield* this.pop(token); | ||
|
@@ -36515,6 +36562,7 @@ var require_parser = __commonJS({ | |
} | ||
yield* this.pop(); | ||
break; | ||
/* istanbul ignore next should not happen */ | ||
default: | ||
yield* this.pop(); | ||
yield* this.step(); | ||
|
@@ -36949,6 +36997,7 @@ var require_parser = __commonJS({ | |
break; | ||
case "newline": | ||
this.onKeyLine = false; | ||
// fallthrough | ||
case "space": | ||
case "comment": | ||
default: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.