diff --git a/.github/local-actions/branch-manager/main.js b/.github/local-actions/branch-manager/main.js index a67fe151a..fa258bff9 100644 --- a/.github/local-actions/branch-manager/main.js +++ b/.github/local-actions/branch-manager/main.js @@ -69159,15 +69159,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token22, @@ -69180,7 +69195,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token22, createdAt: createdAt2, expiresAt: expiresAt2, @@ -69193,9 +69208,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -69244,9 +69258,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token: token2, createdAt, expiresAt, @@ -69396,7 +69410,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/.github/local-actions/labels-sync/main.js b/.github/local-actions/labels-sync/main.js index 3563eb3ae..a0a17d101 100644 --- a/.github/local-actions/labels-sync/main.js +++ b/.github/local-actions/labels-sync/main.js @@ -47768,15 +47768,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -47789,7 +47804,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -47802,9 +47817,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -47853,9 +47867,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -48005,7 +48019,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/.github/local-actions/lock-closed/main.js b/.github/local-actions/lock-closed/main.js index 1332309ba..d6d12630a 100644 --- a/.github/local-actions/lock-closed/main.js +++ b/.github/local-actions/lock-closed/main.js @@ -47505,15 +47505,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -47526,7 +47541,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -47539,9 +47554,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -47590,9 +47604,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -47742,7 +47756,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/github-actions/branch-manager/main.js b/github-actions/branch-manager/main.js index 2cb149c0b..4ff3fce22 100644 --- a/github-actions/branch-manager/main.js +++ b/github-actions/branch-manager/main.js @@ -47768,15 +47768,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -47789,7 +47804,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -47802,9 +47817,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -47853,9 +47867,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -48005,7 +48019,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/github-actions/commit-message-based-labels/main.js b/github-actions/commit-message-based-labels/main.js index ae224fabc..68a890925 100644 --- a/github-actions/commit-message-based-labels/main.js +++ b/github-actions/commit-message-based-labels/main.js @@ -48233,15 +48233,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -48254,7 +48269,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -48267,9 +48282,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -48318,9 +48332,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -48470,7 +48484,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/github-actions/feature-request/main.js b/github-actions/feature-request/main.js index d704b6b92..0db8d8316 100644 --- a/github-actions/feature-request/main.js +++ b/github-actions/feature-request/main.js @@ -47505,15 +47505,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -47526,7 +47541,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -47539,9 +47554,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -47590,9 +47604,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -47742,7 +47756,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/github-actions/org-file-sync/main.js b/github-actions/org-file-sync/main.js index fcc9d84a2..796853488 100644 --- a/github-actions/org-file-sync/main.js +++ b/github-actions/org-file-sync/main.js @@ -47505,15 +47505,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -47526,7 +47541,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -47539,9 +47554,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -47590,9 +47604,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -47742,7 +47756,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/github-actions/post-approval-changes/main.js b/github-actions/post-approval-changes/main.js index dbf745ec2..7156a3624 100644 --- a/github-actions/post-approval-changes/main.js +++ b/github-actions/post-approval-changes/main.js @@ -47505,15 +47505,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -47526,7 +47541,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -47539,9 +47554,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -47590,9 +47604,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -47742,7 +47756,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/github-actions/unified-status-check/main.js b/github-actions/unified-status-check/main.js index bd0cd5987..e68892726 100644 --- a/github-actions/unified-status-check/main.js +++ b/github-actions/unified-status-check/main.js @@ -47792,15 +47792,30 @@ async function getInstallationAuthentication(state, options, customRequest) { }; return factory(factoryAuthOptions); } - const optionsWithInstallationTokenFromState = Object.assign( - { installationId }, - options + const request2 = customRequest || state.request; + return getInstallationAuthenticationConcurrently( + state, + { ...options, installationId }, + request2 ); +} +var pendingPromises = /* @__PURE__ */ new Map(); +function getInstallationAuthenticationConcurrently(state, options, request2) { + const cacheKey = optionsToCacheKey(options); + if (pendingPromises.has(cacheKey)) { + return pendingPromises.get(cacheKey); + } + const promise = getInstallationAuthenticationImpl( + state, + options, + request2 + ).finally(() => pendingPromises.delete(cacheKey)); + pendingPromises.set(cacheKey, promise); + return promise; +} +async function getInstallationAuthenticationImpl(state, options, request2) { if (!options.refresh) { - const result = await get( - state.cache, - optionsWithInstallationTokenFromState - ); + const result = await get(state.cache, options); if (result) { const { token: token2, @@ -47813,7 +47828,7 @@ async function getInstallationAuthentication(state, options, customRequest) { repositorySelection: repositorySelection2 } = result; return toTokenAuthentication({ - installationId, + installationId: options.installationId, token: token2, createdAt: createdAt2, expiresAt: expiresAt2, @@ -47826,9 +47841,8 @@ async function getInstallationAuthentication(state, options, customRequest) { } } const appAuthentication = await getAppAuthentication(state); - const request2 = customRequest || state.request; const payload = { - installation_id: installationId, + installation_id: options.installationId, mediaType: { previews: ["machine-man"] }, @@ -47877,9 +47891,9 @@ async function getInstallationAuthentication(state, options, customRequest) { if (singleFileName) { Object.assign(payload, { singleFileName }); } - await set(state.cache, optionsWithInstallationTokenFromState, cacheOptions); + await set(state.cache, options, cacheOptions); const cacheData = { - installationId, + installationId: options.installationId, token, createdAt, expiresAt, @@ -48029,7 +48043,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.5"; +var VERSION12 = "7.2.0"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); diff --git a/package.json b/package.json index 495399b3d..d37d8f683 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ "@google-cloud/storage": "^7.0.0", "@inquirer/prompts": "^7.0.0", "@inquirer/type": "^3.0.0", - "@octokit/auth-app": "7.1.5", + "@octokit/auth-app": "7.2.0", "@octokit/core": "6.1.4", "@octokit/graphql": "8.2.1", "@octokit/graphql-schema": "patch:@octokit/graphql-schema@npm%3A15.3.0#~/.yarn/patches/@octokit-graphql-schema-npm-15.3.0-4046a59648.patch", diff --git a/yarn.lock b/yarn.lock index bea67ed28..b397488a7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -258,7 +258,7 @@ __metadata: "@inquirer/prompts": "npm:^7.0.0" "@inquirer/type": "npm:^3.0.0" "@microsoft/api-extractor": "npm:7.52.2" - "@octokit/auth-app": "npm:7.1.5" + "@octokit/auth-app": "npm:7.2.0" "@octokit/core": "npm:6.1.4" "@octokit/graphql": "npm:8.2.1" "@octokit/graphql-schema": "patch:@octokit/graphql-schema@npm%3A15.3.0#~/.yarn/patches/@octokit-graphql-schema-npm-15.3.0-4046a59648.patch" @@ -3218,9 +3218,9 @@ __metadata: languageName: node linkType: hard -"@octokit/auth-app@npm:7.1.5": - version: 7.1.5 - resolution: "@octokit/auth-app@npm:7.1.5" +"@octokit/auth-app@npm:7.2.0": + version: 7.2.0 + resolution: "@octokit/auth-app@npm:7.2.0" dependencies: "@octokit/auth-oauth-app": "npm:^8.1.3" "@octokit/auth-oauth-user": "npm:^5.1.3" @@ -3230,7 +3230,7 @@ __metadata: toad-cache: "npm:^3.7.0" universal-github-app-jwt: "npm:^2.2.0" universal-user-agent: "npm:^7.0.0" - checksum: 10c0/d90ae740b85dbae8f5af457bfda333815977672a214b11d115907df5ff6a74c48e57ba4db0db8808d2a77065f311c9c09f915b4f7f4a4a2dc024b9fd9c46732e + checksum: 10c0/167c11ff7455a531b7aaf05fc91bd9dd8b9ce896e91f4010fffb5a7cc404ef2fce046e7a6ac3926aada811a4ed124ef4d15aabf38f800aeff4322e76e5734409 languageName: node linkType: hard