Skip to content

Commit e167c7e

Browse files
committed
fix
1 parent f7eba05 commit e167c7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ jobs:
122122
}
123123
*/
124124
125+
let caches = null;
125126
const sleep = ms => new Promise(r => setTimeout(r, ms));
126127
const sha = '${{ github.event.pull_request.head.sha || github.sha }}';
127128
const pr = '${{ github.event.pull_request.number }}';
@@ -134,7 +135,7 @@ jobs:
134135
135136
do {
136137
// Fetch all cache entries for the repository
137-
const caches = await github.rest.actions.getActionsCacheList({
138+
caches = await github.rest.actions.getActionsCacheList({
138139
owner: context.repo.owner,
139140
repo: context.repo.repo,
140141
per_page: 100,

0 commit comments

Comments
 (0)