build(release): 2.2.1 [skip ci]
## [2.2.1](https://github.com/actions/create-github-app-token/compare/v2.2.0...v2.2.1) (2025-12-05)
### Bug Fixes
* **deps:** bump the production-dependencies group with 2 updates ([#311](https://github.com/actions/create-github-app-token/issues/311)) ([b212e6a](https://github.com/actions/create-github-app-token/commit/b212e6a739dec02d8488610fbaf8f049f82ee999))
This commit is contained in:
Vendored
+48
-37
@@ -9201,7 +9201,7 @@ var require_readable = __commonJS({
|
|||||||
var kBody = Symbol("kBody");
|
var kBody = Symbol("kBody");
|
||||||
var kAbort = Symbol("abort");
|
var kAbort = Symbol("abort");
|
||||||
var kContentType = Symbol("kContentType");
|
var kContentType = Symbol("kContentType");
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
module2.exports = class BodyReadable extends Readable {
|
module2.exports = class BodyReadable extends Readable {
|
||||||
constructor({
|
constructor({
|
||||||
@@ -9323,7 +9323,7 @@ var require_readable = __commonJS({
|
|||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const signalListenerCleanup = signal ? util.addAbortListener(signal, () => {
|
const signalListenerCleanup = signal ? util.addAbortListener(signal, () => {
|
||||||
this.destroy();
|
this.destroy();
|
||||||
}) : noop;
|
}) : noop2;
|
||||||
this.on("close", function() {
|
this.on("close", function() {
|
||||||
signalListenerCleanup();
|
signalListenerCleanup();
|
||||||
if (signal && signal.aborted) {
|
if (signal && signal.aborted) {
|
||||||
@@ -9331,7 +9331,7 @@ var require_readable = __commonJS({
|
|||||||
} else {
|
} else {
|
||||||
resolve(null);
|
resolve(null);
|
||||||
}
|
}
|
||||||
}).on("error", noop).on("data", function(chunk) {
|
}).on("error", noop2).on("data", function(chunk) {
|
||||||
limit -= chunk.length;
|
limit -= chunk.length;
|
||||||
if (limit <= 0) {
|
if (limit <= 0) {
|
||||||
this.destroy();
|
this.destroy();
|
||||||
@@ -20879,7 +20879,7 @@ var require_util8 = __commonJS({
|
|||||||
yield* this[kBody];
|
yield* this[kBody];
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
function wrapRequestBody(body) {
|
function wrapRequestBody(body) {
|
||||||
if (isStream(body)) {
|
if (isStream(body)) {
|
||||||
@@ -21290,7 +21290,7 @@ var require_util8 = __commonJS({
|
|||||||
}
|
}
|
||||||
var setupConnectTimeout = process.platform === "win32" ? (socketWeakRef, opts) => {
|
var setupConnectTimeout = process.platform === "win32" ? (socketWeakRef, opts) => {
|
||||||
if (!opts.timeout) {
|
if (!opts.timeout) {
|
||||||
return noop;
|
return noop2;
|
||||||
}
|
}
|
||||||
let s1 = null;
|
let s1 = null;
|
||||||
let s2 = null;
|
let s2 = null;
|
||||||
@@ -21306,7 +21306,7 @@ var require_util8 = __commonJS({
|
|||||||
};
|
};
|
||||||
} : (socketWeakRef, opts) => {
|
} : (socketWeakRef, opts) => {
|
||||||
if (!opts.timeout) {
|
if (!opts.timeout) {
|
||||||
return noop;
|
return noop2;
|
||||||
}
|
}
|
||||||
let s1 = null;
|
let s1 = null;
|
||||||
const fastTimer = timers.setFastTimeout(() => {
|
const fastTimer = timers.setFastTimeout(() => {
|
||||||
@@ -25556,12 +25556,12 @@ var require_body2 = __commonJS({
|
|||||||
random = (max) => Math.floor(Math.random() * max);
|
random = (max) => Math.floor(Math.random() * max);
|
||||||
}
|
}
|
||||||
var textEncoder = new TextEncoder();
|
var textEncoder = new TextEncoder();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var streamRegistry = new FinalizationRegistry((weakRef) => {
|
var streamRegistry = new FinalizationRegistry((weakRef) => {
|
||||||
const stream = weakRef.deref();
|
const stream = weakRef.deref();
|
||||||
if (stream && !stream.locked && !isDisturbed(stream) && !isErrored(stream)) {
|
if (stream && !stream.locked && !isDisturbed(stream) && !isErrored(stream)) {
|
||||||
stream.cancel("Response object has been garbage collected").catch(noop);
|
stream.cancel("Response object has been garbage collected").catch(noop2);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
function extractBody(object, keepalive = false) {
|
function extractBody(object, keepalive = false) {
|
||||||
@@ -27650,7 +27650,7 @@ var require_client2 = __commonJS({
|
|||||||
var getDefaultNodeMaxHeaderSize = http && http.maxHeaderSize && Number.isInteger(http.maxHeaderSize) && http.maxHeaderSize > 0 ? () => http.maxHeaderSize : () => {
|
var getDefaultNodeMaxHeaderSize = http && http.maxHeaderSize && Number.isInteger(http.maxHeaderSize) && http.maxHeaderSize > 0 ? () => http.maxHeaderSize : () => {
|
||||||
throw new InvalidArgumentError("http module not available or http.maxHeaderSize invalid");
|
throw new InvalidArgumentError("http module not available or http.maxHeaderSize invalid");
|
||||||
};
|
};
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
function getPipelining(client) {
|
function getPipelining(client) {
|
||||||
return client[kPipelining] ?? client[kHTTPContext]?.defaultPipelining ?? 1;
|
return client[kPipelining] ?? client[kHTTPContext]?.defaultPipelining ?? 1;
|
||||||
@@ -27924,7 +27924,7 @@ var require_client2 = __commonJS({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (client.destroyed) {
|
if (client.destroyed) {
|
||||||
util.destroy(socket.on("error", noop), new ClientDestroyedError());
|
util.destroy(socket.on("error", noop2), new ClientDestroyedError());
|
||||||
client[kResume]();
|
client[kResume]();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -27932,7 +27932,7 @@ var require_client2 = __commonJS({
|
|||||||
try {
|
try {
|
||||||
client[kHTTPContext] = socket.alpnProtocol === "h2" ? connectH2(client, socket) : connectH1(client, socket);
|
client[kHTTPContext] = socket.alpnProtocol === "h2" ? connectH2(client, socket) : connectH1(client, socket);
|
||||||
} catch (err2) {
|
} catch (err2) {
|
||||||
socket.destroy().on("error", noop);
|
socket.destroy().on("error", noop2);
|
||||||
handleConnectError(client, err2, { host, hostname, protocol, port });
|
handleConnectError(client, err2, { host, hostname, protocol, port });
|
||||||
client[kResume]();
|
client[kResume]();
|
||||||
return;
|
return;
|
||||||
@@ -28716,7 +28716,7 @@ var require_proxy_agent2 = __commonJS({
|
|||||||
function defaultFactory(origin, opts) {
|
function defaultFactory(origin, opts) {
|
||||||
return new Pool(origin, opts);
|
return new Pool(origin, opts);
|
||||||
}
|
}
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
function defaultAgentFactory(origin, opts) {
|
function defaultAgentFactory(origin, opts) {
|
||||||
if (opts.connections === 1) {
|
if (opts.connections === 1) {
|
||||||
@@ -28833,7 +28833,7 @@ var require_proxy_agent2 = __commonJS({
|
|||||||
servername: this[kProxyTls]?.servername || proxyHostname
|
servername: this[kProxyTls]?.servername || proxyHostname
|
||||||
});
|
});
|
||||||
if (statusCode !== 200) {
|
if (statusCode !== 200) {
|
||||||
socket.on("error", noop).destroy();
|
socket.on("error", noop2).destroy();
|
||||||
callback(new RequestAbortedError(`Proxy response (${statusCode}) !== 200 when HTTP Tunneling`));
|
callback(new RequestAbortedError(`Proxy response (${statusCode}) !== 200 when HTTP Tunneling`));
|
||||||
}
|
}
|
||||||
if (opts2.protocol !== "https:") {
|
if (opts2.protocol !== "https:") {
|
||||||
@@ -29500,7 +29500,7 @@ var require_readable2 = __commonJS({
|
|||||||
var kContentLength = Symbol("kContentLength");
|
var kContentLength = Symbol("kContentLength");
|
||||||
var kUsed = Symbol("kUsed");
|
var kUsed = Symbol("kUsed");
|
||||||
var kBytesRead = Symbol("kBytesRead");
|
var kBytesRead = Symbol("kBytesRead");
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
var BodyReadable = class extends Readable {
|
var BodyReadable = class extends Readable {
|
||||||
/**
|
/**
|
||||||
@@ -29725,7 +29725,7 @@ var require_readable2 = __commonJS({
|
|||||||
} else {
|
} else {
|
||||||
this.on("close", resolve);
|
this.on("close", resolve);
|
||||||
}
|
}
|
||||||
this.on("error", noop).on("data", () => {
|
this.on("error", noop2).on("data", () => {
|
||||||
if (this[kBytesRead] > limit) {
|
if (this[kBytesRead] > limit) {
|
||||||
this.destroy();
|
this.destroy();
|
||||||
}
|
}
|
||||||
@@ -29894,7 +29894,7 @@ var require_api_request2 = __commonJS({
|
|||||||
var { Readable } = require_readable2();
|
var { Readable } = require_readable2();
|
||||||
var { InvalidArgumentError, RequestAbortedError } = require_errors2();
|
var { InvalidArgumentError, RequestAbortedError } = require_errors2();
|
||||||
var util = require_util8();
|
var util = require_util8();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var RequestHandler = class extends AsyncResource {
|
var RequestHandler = class extends AsyncResource {
|
||||||
constructor(opts, callback) {
|
constructor(opts, callback) {
|
||||||
@@ -29921,7 +29921,7 @@ var require_api_request2 = __commonJS({
|
|||||||
super("UNDICI_REQUEST");
|
super("UNDICI_REQUEST");
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (util.isStream(body)) {
|
if (util.isStream(body)) {
|
||||||
util.destroy(body.on("error", noop), err);
|
util.destroy(body.on("error", noop2), err);
|
||||||
}
|
}
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
@@ -29944,7 +29944,7 @@ var require_api_request2 = __commonJS({
|
|||||||
this.removeAbortListener = util.addAbortListener(signal, () => {
|
this.removeAbortListener = util.addAbortListener(signal, () => {
|
||||||
this.reason = signal.reason ?? new RequestAbortedError();
|
this.reason = signal.reason ?? new RequestAbortedError();
|
||||||
if (this.res) {
|
if (this.res) {
|
||||||
util.destroy(this.res.on("error", noop), this.reason);
|
util.destroy(this.res.on("error", noop2), this.reason);
|
||||||
} else if (this.abort) {
|
} else if (this.abort) {
|
||||||
this.abort(this.reason);
|
this.abort(this.reason);
|
||||||
}
|
}
|
||||||
@@ -29997,7 +29997,7 @@ var require_api_request2 = __commonJS({
|
|||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.res = null;
|
this.res = null;
|
||||||
util.destroy(res.on("error", noop), err);
|
util.destroy(res.on("error", noop2), err);
|
||||||
queueMicrotask(() => {
|
queueMicrotask(() => {
|
||||||
throw err;
|
throw err;
|
||||||
});
|
});
|
||||||
@@ -30022,13 +30022,13 @@ var require_api_request2 = __commonJS({
|
|||||||
if (res) {
|
if (res) {
|
||||||
this.res = null;
|
this.res = null;
|
||||||
queueMicrotask(() => {
|
queueMicrotask(() => {
|
||||||
util.destroy(res.on("error", noop), err);
|
util.destroy(res.on("error", noop2), err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (body) {
|
if (body) {
|
||||||
this.body = null;
|
this.body = null;
|
||||||
if (util.isStream(body)) {
|
if (util.isStream(body)) {
|
||||||
body.on("error", noop);
|
body.on("error", noop2);
|
||||||
util.destroy(body, err);
|
util.destroy(body, err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -30124,7 +30124,7 @@ var require_api_stream2 = __commonJS({
|
|||||||
var { InvalidArgumentError, InvalidReturnValueError } = require_errors2();
|
var { InvalidArgumentError, InvalidReturnValueError } = require_errors2();
|
||||||
var util = require_util8();
|
var util = require_util8();
|
||||||
var { addSignal, removeSignal } = require_abort_signal2();
|
var { addSignal, removeSignal } = require_abort_signal2();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var StreamHandler = class extends AsyncResource {
|
var StreamHandler = class extends AsyncResource {
|
||||||
constructor(opts, factory, callback) {
|
constructor(opts, factory, callback) {
|
||||||
@@ -30151,7 +30151,7 @@ var require_api_stream2 = __commonJS({
|
|||||||
super("UNDICI_STREAM");
|
super("UNDICI_STREAM");
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (util.isStream(body)) {
|
if (util.isStream(body)) {
|
||||||
util.destroy(body.on("error", noop), err);
|
util.destroy(body.on("error", noop2), err);
|
||||||
}
|
}
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
@@ -30293,7 +30293,7 @@ var require_api_pipeline2 = __commonJS({
|
|||||||
} = require_errors2();
|
} = require_errors2();
|
||||||
var util = require_util8();
|
var util = require_util8();
|
||||||
var { addSignal, removeSignal } = require_abort_signal2();
|
var { addSignal, removeSignal } = require_abort_signal2();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var kResume = Symbol("resume");
|
var kResume = Symbol("resume");
|
||||||
var PipelineRequest = class extends Readable {
|
var PipelineRequest = class extends Readable {
|
||||||
@@ -30353,7 +30353,7 @@ var require_api_pipeline2 = __commonJS({
|
|||||||
this.abort = null;
|
this.abort = null;
|
||||||
this.context = null;
|
this.context = null;
|
||||||
this.onInfo = onInfo || null;
|
this.onInfo = onInfo || null;
|
||||||
this.req = new PipelineRequest().on("error", noop);
|
this.req = new PipelineRequest().on("error", noop2);
|
||||||
this.ret = new Duplex({
|
this.ret = new Duplex({
|
||||||
readableObjectMode: opts.objectMode,
|
readableObjectMode: opts.objectMode,
|
||||||
autoDestroy: true,
|
autoDestroy: true,
|
||||||
@@ -30424,7 +30424,7 @@ var require_api_pipeline2 = __commonJS({
|
|||||||
context
|
context
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.res.on("error", noop);
|
this.res.on("error", noop2);
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
if (!body || typeof body.on !== "function") {
|
if (!body || typeof body.on !== "function") {
|
||||||
@@ -32646,7 +32646,7 @@ var require_redirect_handler = __commonJS({
|
|||||||
var EE = require("node:events");
|
var EE = require("node:events");
|
||||||
var redirectableStatusCodes = [300, 301, 302, 303, 307, 308];
|
var redirectableStatusCodes = [300, 301, 302, 303, 307, 308];
|
||||||
var kBody = Symbol("body");
|
var kBody = Symbol("body");
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
var BodyAsyncIterable = class {
|
var BodyAsyncIterable = class {
|
||||||
constructor(body) {
|
constructor(body) {
|
||||||
@@ -32709,14 +32709,14 @@ var require_redirect_handler = __commonJS({
|
|||||||
if ((statusCode === 301 || statusCode === 302) && this.opts.method === "POST") {
|
if ((statusCode === 301 || statusCode === 302) && this.opts.method === "POST") {
|
||||||
this.opts.method = "GET";
|
this.opts.method = "GET";
|
||||||
if (util.isStream(this.opts.body)) {
|
if (util.isStream(this.opts.body)) {
|
||||||
util.destroy(this.opts.body.on("error", noop));
|
util.destroy(this.opts.body.on("error", noop2));
|
||||||
}
|
}
|
||||||
this.opts.body = null;
|
this.opts.body = null;
|
||||||
}
|
}
|
||||||
if (statusCode === 303 && this.opts.method !== "HEAD") {
|
if (statusCode === 303 && this.opts.method !== "HEAD") {
|
||||||
this.opts.method = "GET";
|
this.opts.method = "GET";
|
||||||
if (util.isStream(this.opts.body)) {
|
if (util.isStream(this.opts.body)) {
|
||||||
util.destroy(this.opts.body.on("error", noop));
|
util.destroy(this.opts.body.on("error", noop2));
|
||||||
}
|
}
|
||||||
this.opts.body = null;
|
this.opts.body = null;
|
||||||
}
|
}
|
||||||
@@ -34104,7 +34104,7 @@ var require_cache_handler = __commonJS({
|
|||||||
isEtagUsable
|
isEtagUsable
|
||||||
} = require_cache2();
|
} = require_cache2();
|
||||||
var { parseHttpDate } = require_date();
|
var { parseHttpDate } = require_date();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var HEURISTICALLY_CACHEABLE_STATUS_CODES = [
|
var HEURISTICALLY_CACHEABLE_STATUS_CODES = [
|
||||||
200,
|
200,
|
||||||
@@ -34185,7 +34185,7 @@ var require_cache_handler = __commonJS({
|
|||||||
);
|
);
|
||||||
if (!util.safeHTTPMethods.includes(this.#cacheKey.method) && statusCode >= 200 && statusCode <= 399) {
|
if (!util.safeHTTPMethods.includes(this.#cacheKey.method) && statusCode >= 200 && statusCode <= 399) {
|
||||||
try {
|
try {
|
||||||
this.#store.delete(this.#cacheKey)?.catch?.(noop);
|
this.#store.delete(this.#cacheKey)?.catch?.(noop2);
|
||||||
} catch {
|
} catch {
|
||||||
}
|
}
|
||||||
return downstreamOnHeaders();
|
return downstreamOnHeaders();
|
||||||
@@ -42681,7 +42681,7 @@ var RequestError = class extends Error {
|
|||||||
*/
|
*/
|
||||||
response;
|
response;
|
||||||
constructor(message, statusCode, options) {
|
constructor(message, statusCode, options) {
|
||||||
super(message);
|
super(message, { cause: options.cause });
|
||||||
this.name = "HttpError";
|
this.name = "HttpError";
|
||||||
this.status = Number.parseInt(statusCode);
|
this.status = Number.parseInt(statusCode);
|
||||||
if (Number.isNaN(this.status)) {
|
if (Number.isNaN(this.status)) {
|
||||||
@@ -42705,7 +42705,7 @@ var RequestError = class extends Error {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// node_modules/@octokit/request/dist-bundle/index.js
|
// node_modules/@octokit/request/dist-bundle/index.js
|
||||||
var VERSION2 = "10.0.5";
|
var VERSION2 = "10.0.7";
|
||||||
var defaults_default = {
|
var defaults_default = {
|
||||||
headers: {
|
headers: {
|
||||||
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
|
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
|
||||||
@@ -42719,6 +42719,7 @@ function isPlainObject2(value) {
|
|||||||
const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
||||||
return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
|
return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
|
||||||
}
|
}
|
||||||
|
var noop = () => "";
|
||||||
async function fetchWrapper(requestOptions) {
|
async function fetchWrapper(requestOptions) {
|
||||||
const fetch = requestOptions.request?.fetch || globalThis.fetch;
|
const fetch = requestOptions.request?.fetch || globalThis.fetch;
|
||||||
if (!fetch) {
|
if (!fetch) {
|
||||||
@@ -42820,7 +42821,7 @@ async function fetchWrapper(requestOptions) {
|
|||||||
async function getResponseData(response) {
|
async function getResponseData(response) {
|
||||||
const contentType = response.headers.get("content-type");
|
const contentType = response.headers.get("content-type");
|
||||||
if (!contentType) {
|
if (!contentType) {
|
||||||
return response.text().catch(() => "");
|
return response.text().catch(noop);
|
||||||
}
|
}
|
||||||
const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType);
|
const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType);
|
||||||
if (isJSONResponse(mimetype)) {
|
if (isJSONResponse(mimetype)) {
|
||||||
@@ -42832,9 +42833,12 @@ async function getResponseData(response) {
|
|||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
|
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
|
||||||
return response.text().catch(() => "");
|
return response.text().catch(noop);
|
||||||
} else {
|
} else {
|
||||||
return response.arrayBuffer().catch(() => new ArrayBuffer(0));
|
return response.arrayBuffer().catch(
|
||||||
|
/* v8 ignore next -- @preserve */
|
||||||
|
() => new ArrayBuffer(0)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function isJSONResponse(mimetype) {
|
function isJSONResponse(mimetype) {
|
||||||
@@ -44148,7 +44152,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
|
|||||||
return sendRequestWithRetries(state, request2, options, createdAt, retries);
|
return sendRequestWithRetries(state, request2, options, createdAt, retries);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var VERSION6 = "8.1.1";
|
var VERSION6 = "8.1.2";
|
||||||
function createAppAuth(options) {
|
function createAppAuth(options) {
|
||||||
if (!options.appId) {
|
if (!options.appId) {
|
||||||
throw new Error("[@octokit/auth-app] appId option is required");
|
throw new Error("[@octokit/auth-app] appId option is required");
|
||||||
@@ -44589,6 +44593,13 @@ undici/lib/websocket/frame.js:
|
|||||||
undici/lib/web/websocket/frame.js:
|
undici/lib/web/websocket/frame.js:
|
||||||
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
||||||
|
|
||||||
|
@octokit/request-error/dist-src/index.js:
|
||||||
|
(* v8 ignore else -- @preserve -- Bug with vitest coverage where it sees an else branch that doesn't exist *)
|
||||||
|
|
||||||
|
@octokit/request/dist-bundle/index.js:
|
||||||
|
(* v8 ignore next -- @preserve *)
|
||||||
|
(* v8 ignore else -- @preserve *)
|
||||||
|
|
||||||
toad-cache/dist/toad-cache.mjs:
|
toad-cache/dist/toad-cache.mjs:
|
||||||
(**
|
(**
|
||||||
* toad-cache
|
* toad-cache
|
||||||
|
|||||||
Vendored
+47
-36
@@ -9195,7 +9195,7 @@ var require_readable = __commonJS({
|
|||||||
var kBody = Symbol("kBody");
|
var kBody = Symbol("kBody");
|
||||||
var kAbort = Symbol("abort");
|
var kAbort = Symbol("abort");
|
||||||
var kContentType = Symbol("kContentType");
|
var kContentType = Symbol("kContentType");
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
module2.exports = class BodyReadable extends Readable {
|
module2.exports = class BodyReadable extends Readable {
|
||||||
constructor({
|
constructor({
|
||||||
@@ -9317,7 +9317,7 @@ var require_readable = __commonJS({
|
|||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const signalListenerCleanup = signal ? util.addAbortListener(signal, () => {
|
const signalListenerCleanup = signal ? util.addAbortListener(signal, () => {
|
||||||
this.destroy();
|
this.destroy();
|
||||||
}) : noop;
|
}) : noop2;
|
||||||
this.on("close", function() {
|
this.on("close", function() {
|
||||||
signalListenerCleanup();
|
signalListenerCleanup();
|
||||||
if (signal && signal.aborted) {
|
if (signal && signal.aborted) {
|
||||||
@@ -9325,7 +9325,7 @@ var require_readable = __commonJS({
|
|||||||
} else {
|
} else {
|
||||||
resolve(null);
|
resolve(null);
|
||||||
}
|
}
|
||||||
}).on("error", noop).on("data", function(chunk) {
|
}).on("error", noop2).on("data", function(chunk) {
|
||||||
limit -= chunk.length;
|
limit -= chunk.length;
|
||||||
if (limit <= 0) {
|
if (limit <= 0) {
|
||||||
this.destroy();
|
this.destroy();
|
||||||
@@ -20873,7 +20873,7 @@ var require_util8 = __commonJS({
|
|||||||
yield* this[kBody];
|
yield* this[kBody];
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
function wrapRequestBody(body) {
|
function wrapRequestBody(body) {
|
||||||
if (isStream(body)) {
|
if (isStream(body)) {
|
||||||
@@ -21284,7 +21284,7 @@ var require_util8 = __commonJS({
|
|||||||
}
|
}
|
||||||
var setupConnectTimeout = process.platform === "win32" ? (socketWeakRef, opts) => {
|
var setupConnectTimeout = process.platform === "win32" ? (socketWeakRef, opts) => {
|
||||||
if (!opts.timeout) {
|
if (!opts.timeout) {
|
||||||
return noop;
|
return noop2;
|
||||||
}
|
}
|
||||||
let s1 = null;
|
let s1 = null;
|
||||||
let s2 = null;
|
let s2 = null;
|
||||||
@@ -21300,7 +21300,7 @@ var require_util8 = __commonJS({
|
|||||||
};
|
};
|
||||||
} : (socketWeakRef, opts) => {
|
} : (socketWeakRef, opts) => {
|
||||||
if (!opts.timeout) {
|
if (!opts.timeout) {
|
||||||
return noop;
|
return noop2;
|
||||||
}
|
}
|
||||||
let s1 = null;
|
let s1 = null;
|
||||||
const fastTimer = timers.setFastTimeout(() => {
|
const fastTimer = timers.setFastTimeout(() => {
|
||||||
@@ -25550,12 +25550,12 @@ var require_body2 = __commonJS({
|
|||||||
random = (max) => Math.floor(Math.random() * max);
|
random = (max) => Math.floor(Math.random() * max);
|
||||||
}
|
}
|
||||||
var textEncoder = new TextEncoder();
|
var textEncoder = new TextEncoder();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var streamRegistry = new FinalizationRegistry((weakRef) => {
|
var streamRegistry = new FinalizationRegistry((weakRef) => {
|
||||||
const stream = weakRef.deref();
|
const stream = weakRef.deref();
|
||||||
if (stream && !stream.locked && !isDisturbed(stream) && !isErrored(stream)) {
|
if (stream && !stream.locked && !isDisturbed(stream) && !isErrored(stream)) {
|
||||||
stream.cancel("Response object has been garbage collected").catch(noop);
|
stream.cancel("Response object has been garbage collected").catch(noop2);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
function extractBody(object, keepalive = false) {
|
function extractBody(object, keepalive = false) {
|
||||||
@@ -27644,7 +27644,7 @@ var require_client2 = __commonJS({
|
|||||||
var getDefaultNodeMaxHeaderSize = http && http.maxHeaderSize && Number.isInteger(http.maxHeaderSize) && http.maxHeaderSize > 0 ? () => http.maxHeaderSize : () => {
|
var getDefaultNodeMaxHeaderSize = http && http.maxHeaderSize && Number.isInteger(http.maxHeaderSize) && http.maxHeaderSize > 0 ? () => http.maxHeaderSize : () => {
|
||||||
throw new InvalidArgumentError("http module not available or http.maxHeaderSize invalid");
|
throw new InvalidArgumentError("http module not available or http.maxHeaderSize invalid");
|
||||||
};
|
};
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
function getPipelining(client) {
|
function getPipelining(client) {
|
||||||
return client[kPipelining] ?? client[kHTTPContext]?.defaultPipelining ?? 1;
|
return client[kPipelining] ?? client[kHTTPContext]?.defaultPipelining ?? 1;
|
||||||
@@ -27918,7 +27918,7 @@ var require_client2 = __commonJS({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (client.destroyed) {
|
if (client.destroyed) {
|
||||||
util.destroy(socket.on("error", noop), new ClientDestroyedError());
|
util.destroy(socket.on("error", noop2), new ClientDestroyedError());
|
||||||
client[kResume]();
|
client[kResume]();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -27926,7 +27926,7 @@ var require_client2 = __commonJS({
|
|||||||
try {
|
try {
|
||||||
client[kHTTPContext] = socket.alpnProtocol === "h2" ? connectH2(client, socket) : connectH1(client, socket);
|
client[kHTTPContext] = socket.alpnProtocol === "h2" ? connectH2(client, socket) : connectH1(client, socket);
|
||||||
} catch (err2) {
|
} catch (err2) {
|
||||||
socket.destroy().on("error", noop);
|
socket.destroy().on("error", noop2);
|
||||||
handleConnectError(client, err2, { host, hostname, protocol, port });
|
handleConnectError(client, err2, { host, hostname, protocol, port });
|
||||||
client[kResume]();
|
client[kResume]();
|
||||||
return;
|
return;
|
||||||
@@ -28710,7 +28710,7 @@ var require_proxy_agent2 = __commonJS({
|
|||||||
function defaultFactory(origin, opts) {
|
function defaultFactory(origin, opts) {
|
||||||
return new Pool(origin, opts);
|
return new Pool(origin, opts);
|
||||||
}
|
}
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
function defaultAgentFactory(origin, opts) {
|
function defaultAgentFactory(origin, opts) {
|
||||||
if (opts.connections === 1) {
|
if (opts.connections === 1) {
|
||||||
@@ -28827,7 +28827,7 @@ var require_proxy_agent2 = __commonJS({
|
|||||||
servername: this[kProxyTls]?.servername || proxyHostname
|
servername: this[kProxyTls]?.servername || proxyHostname
|
||||||
});
|
});
|
||||||
if (statusCode !== 200) {
|
if (statusCode !== 200) {
|
||||||
socket.on("error", noop).destroy();
|
socket.on("error", noop2).destroy();
|
||||||
callback(new RequestAbortedError(`Proxy response (${statusCode}) !== 200 when HTTP Tunneling`));
|
callback(new RequestAbortedError(`Proxy response (${statusCode}) !== 200 when HTTP Tunneling`));
|
||||||
}
|
}
|
||||||
if (opts2.protocol !== "https:") {
|
if (opts2.protocol !== "https:") {
|
||||||
@@ -29494,7 +29494,7 @@ var require_readable2 = __commonJS({
|
|||||||
var kContentLength = Symbol("kContentLength");
|
var kContentLength = Symbol("kContentLength");
|
||||||
var kUsed = Symbol("kUsed");
|
var kUsed = Symbol("kUsed");
|
||||||
var kBytesRead = Symbol("kBytesRead");
|
var kBytesRead = Symbol("kBytesRead");
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
var BodyReadable = class extends Readable {
|
var BodyReadable = class extends Readable {
|
||||||
/**
|
/**
|
||||||
@@ -29719,7 +29719,7 @@ var require_readable2 = __commonJS({
|
|||||||
} else {
|
} else {
|
||||||
this.on("close", resolve);
|
this.on("close", resolve);
|
||||||
}
|
}
|
||||||
this.on("error", noop).on("data", () => {
|
this.on("error", noop2).on("data", () => {
|
||||||
if (this[kBytesRead] > limit) {
|
if (this[kBytesRead] > limit) {
|
||||||
this.destroy();
|
this.destroy();
|
||||||
}
|
}
|
||||||
@@ -29888,7 +29888,7 @@ var require_api_request2 = __commonJS({
|
|||||||
var { Readable } = require_readable2();
|
var { Readable } = require_readable2();
|
||||||
var { InvalidArgumentError, RequestAbortedError } = require_errors2();
|
var { InvalidArgumentError, RequestAbortedError } = require_errors2();
|
||||||
var util = require_util8();
|
var util = require_util8();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var RequestHandler = class extends AsyncResource {
|
var RequestHandler = class extends AsyncResource {
|
||||||
constructor(opts, callback) {
|
constructor(opts, callback) {
|
||||||
@@ -29915,7 +29915,7 @@ var require_api_request2 = __commonJS({
|
|||||||
super("UNDICI_REQUEST");
|
super("UNDICI_REQUEST");
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (util.isStream(body)) {
|
if (util.isStream(body)) {
|
||||||
util.destroy(body.on("error", noop), err);
|
util.destroy(body.on("error", noop2), err);
|
||||||
}
|
}
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
@@ -29938,7 +29938,7 @@ var require_api_request2 = __commonJS({
|
|||||||
this.removeAbortListener = util.addAbortListener(signal, () => {
|
this.removeAbortListener = util.addAbortListener(signal, () => {
|
||||||
this.reason = signal.reason ?? new RequestAbortedError();
|
this.reason = signal.reason ?? new RequestAbortedError();
|
||||||
if (this.res) {
|
if (this.res) {
|
||||||
util.destroy(this.res.on("error", noop), this.reason);
|
util.destroy(this.res.on("error", noop2), this.reason);
|
||||||
} else if (this.abort) {
|
} else if (this.abort) {
|
||||||
this.abort(this.reason);
|
this.abort(this.reason);
|
||||||
}
|
}
|
||||||
@@ -29991,7 +29991,7 @@ var require_api_request2 = __commonJS({
|
|||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.res = null;
|
this.res = null;
|
||||||
util.destroy(res.on("error", noop), err);
|
util.destroy(res.on("error", noop2), err);
|
||||||
queueMicrotask(() => {
|
queueMicrotask(() => {
|
||||||
throw err;
|
throw err;
|
||||||
});
|
});
|
||||||
@@ -30016,13 +30016,13 @@ var require_api_request2 = __commonJS({
|
|||||||
if (res) {
|
if (res) {
|
||||||
this.res = null;
|
this.res = null;
|
||||||
queueMicrotask(() => {
|
queueMicrotask(() => {
|
||||||
util.destroy(res.on("error", noop), err);
|
util.destroy(res.on("error", noop2), err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (body) {
|
if (body) {
|
||||||
this.body = null;
|
this.body = null;
|
||||||
if (util.isStream(body)) {
|
if (util.isStream(body)) {
|
||||||
body.on("error", noop);
|
body.on("error", noop2);
|
||||||
util.destroy(body, err);
|
util.destroy(body, err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -30118,7 +30118,7 @@ var require_api_stream2 = __commonJS({
|
|||||||
var { InvalidArgumentError, InvalidReturnValueError } = require_errors2();
|
var { InvalidArgumentError, InvalidReturnValueError } = require_errors2();
|
||||||
var util = require_util8();
|
var util = require_util8();
|
||||||
var { addSignal, removeSignal } = require_abort_signal2();
|
var { addSignal, removeSignal } = require_abort_signal2();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var StreamHandler = class extends AsyncResource {
|
var StreamHandler = class extends AsyncResource {
|
||||||
constructor(opts, factory, callback) {
|
constructor(opts, factory, callback) {
|
||||||
@@ -30145,7 +30145,7 @@ var require_api_stream2 = __commonJS({
|
|||||||
super("UNDICI_STREAM");
|
super("UNDICI_STREAM");
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (util.isStream(body)) {
|
if (util.isStream(body)) {
|
||||||
util.destroy(body.on("error", noop), err);
|
util.destroy(body.on("error", noop2), err);
|
||||||
}
|
}
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
@@ -30287,7 +30287,7 @@ var require_api_pipeline2 = __commonJS({
|
|||||||
} = require_errors2();
|
} = require_errors2();
|
||||||
var util = require_util8();
|
var util = require_util8();
|
||||||
var { addSignal, removeSignal } = require_abort_signal2();
|
var { addSignal, removeSignal } = require_abort_signal2();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var kResume = Symbol("resume");
|
var kResume = Symbol("resume");
|
||||||
var PipelineRequest = class extends Readable {
|
var PipelineRequest = class extends Readable {
|
||||||
@@ -30347,7 +30347,7 @@ var require_api_pipeline2 = __commonJS({
|
|||||||
this.abort = null;
|
this.abort = null;
|
||||||
this.context = null;
|
this.context = null;
|
||||||
this.onInfo = onInfo || null;
|
this.onInfo = onInfo || null;
|
||||||
this.req = new PipelineRequest().on("error", noop);
|
this.req = new PipelineRequest().on("error", noop2);
|
||||||
this.ret = new Duplex({
|
this.ret = new Duplex({
|
||||||
readableObjectMode: opts.objectMode,
|
readableObjectMode: opts.objectMode,
|
||||||
autoDestroy: true,
|
autoDestroy: true,
|
||||||
@@ -30418,7 +30418,7 @@ var require_api_pipeline2 = __commonJS({
|
|||||||
context
|
context
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.res.on("error", noop);
|
this.res.on("error", noop2);
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
if (!body || typeof body.on !== "function") {
|
if (!body || typeof body.on !== "function") {
|
||||||
@@ -32640,7 +32640,7 @@ var require_redirect_handler = __commonJS({
|
|||||||
var EE = require("node:events");
|
var EE = require("node:events");
|
||||||
var redirectableStatusCodes = [300, 301, 302, 303, 307, 308];
|
var redirectableStatusCodes = [300, 301, 302, 303, 307, 308];
|
||||||
var kBody = Symbol("body");
|
var kBody = Symbol("body");
|
||||||
var noop = () => {
|
var noop2 = () => {
|
||||||
};
|
};
|
||||||
var BodyAsyncIterable = class {
|
var BodyAsyncIterable = class {
|
||||||
constructor(body) {
|
constructor(body) {
|
||||||
@@ -32703,14 +32703,14 @@ var require_redirect_handler = __commonJS({
|
|||||||
if ((statusCode === 301 || statusCode === 302) && this.opts.method === "POST") {
|
if ((statusCode === 301 || statusCode === 302) && this.opts.method === "POST") {
|
||||||
this.opts.method = "GET";
|
this.opts.method = "GET";
|
||||||
if (util.isStream(this.opts.body)) {
|
if (util.isStream(this.opts.body)) {
|
||||||
util.destroy(this.opts.body.on("error", noop));
|
util.destroy(this.opts.body.on("error", noop2));
|
||||||
}
|
}
|
||||||
this.opts.body = null;
|
this.opts.body = null;
|
||||||
}
|
}
|
||||||
if (statusCode === 303 && this.opts.method !== "HEAD") {
|
if (statusCode === 303 && this.opts.method !== "HEAD") {
|
||||||
this.opts.method = "GET";
|
this.opts.method = "GET";
|
||||||
if (util.isStream(this.opts.body)) {
|
if (util.isStream(this.opts.body)) {
|
||||||
util.destroy(this.opts.body.on("error", noop));
|
util.destroy(this.opts.body.on("error", noop2));
|
||||||
}
|
}
|
||||||
this.opts.body = null;
|
this.opts.body = null;
|
||||||
}
|
}
|
||||||
@@ -34098,7 +34098,7 @@ var require_cache_handler = __commonJS({
|
|||||||
isEtagUsable
|
isEtagUsable
|
||||||
} = require_cache2();
|
} = require_cache2();
|
||||||
var { parseHttpDate } = require_date();
|
var { parseHttpDate } = require_date();
|
||||||
function noop() {
|
function noop2() {
|
||||||
}
|
}
|
||||||
var HEURISTICALLY_CACHEABLE_STATUS_CODES = [
|
var HEURISTICALLY_CACHEABLE_STATUS_CODES = [
|
||||||
200,
|
200,
|
||||||
@@ -34179,7 +34179,7 @@ var require_cache_handler = __commonJS({
|
|||||||
);
|
);
|
||||||
if (!util.safeHTTPMethods.includes(this.#cacheKey.method) && statusCode >= 200 && statusCode <= 399) {
|
if (!util.safeHTTPMethods.includes(this.#cacheKey.method) && statusCode >= 200 && statusCode <= 399) {
|
||||||
try {
|
try {
|
||||||
this.#store.delete(this.#cacheKey)?.catch?.(noop);
|
this.#store.delete(this.#cacheKey)?.catch?.(noop2);
|
||||||
} catch {
|
} catch {
|
||||||
}
|
}
|
||||||
return downstreamOnHeaders();
|
return downstreamOnHeaders();
|
||||||
@@ -42707,7 +42707,7 @@ var RequestError = class extends Error {
|
|||||||
*/
|
*/
|
||||||
response;
|
response;
|
||||||
constructor(message, statusCode, options) {
|
constructor(message, statusCode, options) {
|
||||||
super(message);
|
super(message, { cause: options.cause });
|
||||||
this.name = "HttpError";
|
this.name = "HttpError";
|
||||||
this.status = Number.parseInt(statusCode);
|
this.status = Number.parseInt(statusCode);
|
||||||
if (Number.isNaN(this.status)) {
|
if (Number.isNaN(this.status)) {
|
||||||
@@ -42731,7 +42731,7 @@ var RequestError = class extends Error {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// node_modules/@octokit/request/dist-bundle/index.js
|
// node_modules/@octokit/request/dist-bundle/index.js
|
||||||
var VERSION2 = "10.0.5";
|
var VERSION2 = "10.0.7";
|
||||||
var defaults_default = {
|
var defaults_default = {
|
||||||
headers: {
|
headers: {
|
||||||
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
|
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
|
||||||
@@ -42745,6 +42745,7 @@ function isPlainObject2(value) {
|
|||||||
const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
||||||
return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
|
return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
|
||||||
}
|
}
|
||||||
|
var noop = () => "";
|
||||||
async function fetchWrapper(requestOptions) {
|
async function fetchWrapper(requestOptions) {
|
||||||
const fetch = requestOptions.request?.fetch || globalThis.fetch;
|
const fetch = requestOptions.request?.fetch || globalThis.fetch;
|
||||||
if (!fetch) {
|
if (!fetch) {
|
||||||
@@ -42846,7 +42847,7 @@ async function fetchWrapper(requestOptions) {
|
|||||||
async function getResponseData(response) {
|
async function getResponseData(response) {
|
||||||
const contentType = response.headers.get("content-type");
|
const contentType = response.headers.get("content-type");
|
||||||
if (!contentType) {
|
if (!contentType) {
|
||||||
return response.text().catch(() => "");
|
return response.text().catch(noop);
|
||||||
}
|
}
|
||||||
const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType);
|
const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType);
|
||||||
if (isJSONResponse(mimetype)) {
|
if (isJSONResponse(mimetype)) {
|
||||||
@@ -42858,9 +42859,12 @@ async function getResponseData(response) {
|
|||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
|
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
|
||||||
return response.text().catch(() => "");
|
return response.text().catch(noop);
|
||||||
} else {
|
} else {
|
||||||
return response.arrayBuffer().catch(() => new ArrayBuffer(0));
|
return response.arrayBuffer().catch(
|
||||||
|
/* v8 ignore next -- @preserve */
|
||||||
|
() => new ArrayBuffer(0)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function isJSONResponse(mimetype) {
|
function isJSONResponse(mimetype) {
|
||||||
@@ -42944,4 +42948,11 @@ undici/lib/web/fetch/body.js:
|
|||||||
undici/lib/websocket/frame.js:
|
undici/lib/websocket/frame.js:
|
||||||
undici/lib/web/websocket/frame.js:
|
undici/lib/web/websocket/frame.js:
|
||||||
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
||||||
|
|
||||||
|
@octokit/request-error/dist-src/index.js:
|
||||||
|
(* v8 ignore else -- @preserve -- Bug with vitest coverage where it sees an else branch that doesn't exist *)
|
||||||
|
|
||||||
|
@octokit/request/dist-bundle/index.js:
|
||||||
|
(* v8 ignore next -- @preserve *)
|
||||||
|
(* v8 ignore else -- @preserve *)
|
||||||
*/
|
*/
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "create-github-app-token",
|
"name": "create-github-app-token",
|
||||||
"version": "2.2.0",
|
"version": "2.2.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "create-github-app-token",
|
"name": "create-github-app-token",
|
||||||
"version": "2.2.0",
|
"version": "2.2.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.11.1",
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
"name": "create-github-app-token",
|
"name": "create-github-app-token",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "2.2.0",
|
"version": "2.2.1",
|
||||||
"description": "GitHub Action for creating a GitHub App Installation Access Token",
|
"description": "GitHub Action for creating a GitHub App Installation Access Token",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20"
|
"node": ">=20"
|
||||||
|
|||||||
Reference in New Issue
Block a user