github-repository-provider 7.23.45 → 7.23.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "7.23.45",
3
+ "version": "7.23.46",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -154,7 +154,7 @@ export class GithubBranch extends Branch {
154
154
  const url = `repos/${this.slug}/git/trees/${treeSha}?recursive=1`;
155
155
 
156
156
  let res;
157
- for (const i = 0; i < 3; i++) {
157
+ for (let i = 0; i < 3; i++) {
158
158
  try {
159
159
  res = await this.provider.fetch(url);
160
160
  if (res.ok) {