Skip to content

Commit c2f0cba

Browse files
angular-robotjosephperrott
authored andcommitted
build: update all non-major dependencies (#2892)
See associated pull request for more information. PR Close #2892
1 parent 5270e91 commit c2f0cba

File tree

15 files changed

+189
-170
lines changed

15 files changed

+189
-170
lines changed

.github/local-actions/branch-manager/main.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64396,7 +64396,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
6439664396
return sendRequestWithRetries(state, request2, options, createdAt, retries);
6439764397
}
6439864398
}
64399-
var VERSION12 = "8.0.1";
64399+
var VERSION12 = "8.0.2";
6440064400
function createAppAuth(options) {
6440164401
if (!options.appId) {
6440264402
throw new Error("[@octokit/auth-app] appId option is required");
@@ -64409,12 +64409,10 @@ function createAppAuth(options) {
6440964409
"[@octokit/auth-app] installationId is set to a falsy value"
6441064410
);
6441164411
}
64412-
const log = Object.assign(
64413-
{
64414-
warn: console.warn.bind(console)
64415-
},
64416-
options.log
64417-
);
64412+
const log = options.log || {};
64413+
if (typeof log.warn !== "function") {
64414+
log.warn = console.warn.bind(console);
64415+
}
6441864416
const request2 = options.request || request.defaults({
6441964417
headers: {
6442064418
"user-agent": `octokit-auth-app.js/${VERSION12} ${getUserAgent()}`

.github/local-actions/labels-sync/main.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42877,7 +42877,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
4287742877
return sendRequestWithRetries(state, request2, options, createdAt, retries);
4287842878
}
4287942879
}
42880-
var VERSION12 = "8.0.1";
42880+
var VERSION12 = "8.0.2";
4288142881
function createAppAuth(options) {
4288242882
if (!options.appId) {
4288342883
throw new Error("[@octokit/auth-app] appId option is required");
@@ -42890,12 +42890,10 @@ function createAppAuth(options) {
4289042890
"[@octokit/auth-app] installationId is set to a falsy value"
4289142891
);
4289242892
}
42893-
const log = Object.assign(
42894-
{
42895-
warn: console.warn.bind(console)
42896-
},
42897-
options.log
42898-
);
42893+
const log = options.log || {};
42894+
if (typeof log.warn !== "function") {
42895+
log.warn = console.warn.bind(console);
42896+
}
4289942897
const request2 = options.request || request.defaults({
4290042898
headers: {
4290142899
"user-agent": `octokit-auth-app.js/${VERSION12} ${getUserAgent()}`

.github/local-actions/lock-closed/main.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42614,7 +42614,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
4261442614
return sendRequestWithRetries(state, request2, options, createdAt, retries);
4261542615
}
4261642616
}
42617-
var VERSION12 = "8.0.1";
42617+
var VERSION12 = "8.0.2";
4261842618
function createAppAuth(options) {
4261942619
if (!options.appId) {
4262042620
throw new Error("[@octokit/auth-app] appId option is required");
@@ -42627,12 +42627,10 @@ function createAppAuth(options) {
4262742627
"[@octokit/auth-app] installationId is set to a falsy value"
4262842628
);
4262942629
}
42630-
const log = Object.assign(
42631-
{
42632-
warn: console.warn.bind(console)
42633-
},
42634-
options.log
42635-
);
42630+
const log = options.log || {};
42631+
if (typeof log.warn !== "function") {
42632+
log.warn = console.warn.bind(console);
42633+
}
4263642634
const request2 = options.request || request.defaults({
4263742635
headers: {
4263842636
"user-agent": `octokit-auth-app.js/${VERSION12} ${getUserAgent()}`

.github/ng-renovate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packageManager": "[email protected]",
44
"type": "commonjs",
55
"dependencies": {
6-
"renovate": "41.30.3"
6+
"renovate": "41.37.2"
77
}
88
}

0 commit comments

Comments
 (0)