Skip to content

Commit

Permalink
fix: Workflow Bot -- Update ALL Dependencies (main) (#1906)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason3S <[email protected]>
  • Loading branch information
1 parent 91cd27c commit e5a7002
Show file tree
Hide file tree
Showing 4 changed files with 247 additions and 204 deletions.
6 changes: 3 additions & 3 deletions action-src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
"@cspell/cspell-bundled-dicts"
],
"devDependencies": {
"esbuild": "^0.23.0"
"esbuild": "^0.23.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@cspell/cspell-bundled-dicts": "^8.14.1",
"@cspell/cspell-types": "^8.13.3",
"@cspell/cspell-types": "^8.14.1",
"@octokit/webhooks-types": "^7.5.1",
"@types/node": "^20.14.15",
"@types/node": "^20.15.0",
"cspell": "^8.14.1",
"cspell-glob": "^8.14.1",
"vscode-uri": "^3.0.8"
Expand Down
65 changes: 57 additions & 8 deletions action/lib/main_root.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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;
}
};
}
});

Expand Down Expand Up @@ -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":
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -22451,6 +22480,7 @@ var require_esprima = __commonJS({
var expr = elementName;
qualifiedName = getQualifiedElementName(expr.object) + "." + getQualifiedElementName(expr.property);
break;
/* istanbul ignore next */
default:
break;
}
Expand Down Expand Up @@ -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];
Expand Down Expand Up @@ -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:
}
}
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand All @@ -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);
Expand Down Expand Up @@ -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 {
Expand All @@ -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;
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -35819,6 +35860,7 @@ var require_lexer = __commonJS({
return "flow";
}
}
// fallthrough
default:
this.flowKey = false;
return yield* this.parsePlainScalar();
Expand Down Expand Up @@ -35896,6 +35938,7 @@ var require_lexer = __commonJS({
if (next === "\n")
break;
}
// fallthrough
default:
break loop;
}
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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 [];
}
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -36949,6 +36997,7 @@ var require_parser = __commonJS({
break;
case "newline":
this.onKeyLine = false;
// fallthrough
case "space":
case "comment":
default:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"prettier": "^3.3.3",
"shx": "^0.3.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"typescript-eslint": "^8.1.0",
"vitest": "^2.0.5"
},
"engines": {
Expand Down
Loading

0 comments on commit e5a7002

Please sign in to comment.