Skip to content

Commit b3019e5

Browse files
angular-robotjosephperrott
authored andcommitted
build: lock file maintenance (#2354)
Closes #2352 as a pr takeover PR Close #2354
1 parent d5ff4c9 commit b3019e5

File tree

4 files changed

+242
-26
lines changed

4 files changed

+242
-26
lines changed

github-actions/google-internal-tests/lib/main.ts

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,10 @@ async function findExistingTestStatus(
9494
github: Octokit,
9595
prHeadSHA: string,
9696
): Promise<GithubStatus | null> {
97-
const existingStatuses: GithubStatus[] = await github.paginate(
98-
github.repos.getCombinedStatusForRef,
99-
{
100-
...context.repo,
101-
ref: prHeadSHA,
102-
},
103-
(r: GetCombinedStatusForRefResponse) => r.data.statuses,
104-
);
97+
const existingStatuses = await github.paginate(github.repos.getCombinedStatusForRef, {
98+
...context.repo,
99+
ref: prHeadSHA,
100+
});
105101

106102
return existingStatuses.find((s) => s.context === statusContext) ?? null;
107103
}

github-actions/google-internal-tests/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46037,7 +46037,7 @@ async function findExistingTestStatus(github, prHeadSHA) {
4603746037
const existingStatuses = await github.paginate(github.repos.getCombinedStatusForRef, {
4603846038
...import_github.context.repo,
4603946039
ref: prHeadSHA
46040-
}, (r) => r.data.statuses);
46040+
});
4604146041
return existingStatuses.find((s) => s.context === statusContext) ?? null;
4604246042
}
4604346043
main().catch((e) => {

tools/ts_proto/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ __metadata:
148148
linkType: hard
149149

150150
"@types/node@npm:>=13.7.0":
151-
version: 22.5.5
152-
resolution: "@types/node@npm:22.5.5"
151+
version: 22.7.4
152+
resolution: "@types/node@npm:22.7.4"
153153
dependencies:
154154
undici-types: "npm:~6.19.2"
155-
checksum: 10c0/ead9495cfc6b1da5e7025856dcce2591e9bae635357410c0d2dd619fce797d2a1d402887580ca4b336cb78168b195224869967de370a23f61663cf1e4836121c
155+
checksum: 10c0/c22bf54515c78ff3170142c1e718b90e2a0003419dc2d55f79c9c9362edd590a6ab1450deb09ff6e1b32d1b4698da407930b16285e8be3a009ea6cd2695cac01
156156
languageName: node
157157
linkType: hard
158158

0 commit comments

Comments
 (0)