Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/local-actions/branch-manager/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -64396,7 +64396,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
return sendRequestWithRetries(state, request2, options, createdAt, retries);
}
}
var VERSION12 = "8.0.1";
var VERSION12 = "8.0.2";
function createAppAuth(options) {
if (!options.appId) {
throw new Error("[@octokit/auth-app] appId option is required");
Expand All @@ -64409,12 +64409,10 @@ function createAppAuth(options) {
"[@octokit/auth-app] installationId is set to a falsy value"
);
}
const log = Object.assign(
{
warn: console.warn.bind(console)
},
options.log
);
const log = options.log || {};
if (typeof log.warn !== "function") {
log.warn = console.warn.bind(console);
}
const request2 = options.request || request.defaults({
headers: {
"user-agent": `octokit-auth-app.js/${VERSION12} ${getUserAgent()}`
Expand Down
12 changes: 5 additions & 7 deletions .github/local-actions/labels-sync/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42877,7 +42877,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
return sendRequestWithRetries(state, request2, options, createdAt, retries);
}
}
var VERSION12 = "8.0.1";
var VERSION12 = "8.0.2";
function createAppAuth(options) {
if (!options.appId) {
throw new Error("[@octokit/auth-app] appId option is required");
Expand All @@ -42890,12 +42890,10 @@ function createAppAuth(options) {
"[@octokit/auth-app] installationId is set to a falsy value"
);
}
const log = Object.assign(
{
warn: console.warn.bind(console)
},
options.log
);
const log = options.log || {};
if (typeof log.warn !== "function") {
log.warn = console.warn.bind(console);
}
const request2 = options.request || request.defaults({
headers: {
"user-agent": `octokit-auth-app.js/${VERSION12} ${getUserAgent()}`
Expand Down
12 changes: 5 additions & 7 deletions .github/local-actions/lock-closed/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42614,7 +42614,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
return sendRequestWithRetries(state, request2, options, createdAt, retries);
}
}
var VERSION12 = "8.0.1";
var VERSION12 = "8.0.2";
function createAppAuth(options) {
if (!options.appId) {
throw new Error("[@octokit/auth-app] appId option is required");
Expand All @@ -42627,12 +42627,10 @@ function createAppAuth(options) {
"[@octokit/auth-app] installationId is set to a falsy value"
);
}
const log = Object.assign(
{
warn: console.warn.bind(console)
},
options.log
);
const log = options.log || {};
if (typeof log.warn !== "function") {
log.warn = console.warn.bind(console);
}
const request2 = options.request || request.defaults({
headers: {
"user-agent": `octokit-auth-app.js/${VERSION12} ${getUserAgent()}`
Expand Down
2 changes: 1 addition & 1 deletion .github/ng-renovate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"packageManager": "[email protected]",
"type": "commonjs",
"dependencies": {
"renovate": "41.30.3"
"renovate": "41.37.2"
}
}
Loading
Loading