- upgrade dependencies to their latest version

```
    "@eslint/eslintrc": "^3.2.0",
    "@eslint/js": "^9.17.0",
    "globals": "^15.13.0",
    "https-proxy-agent": "^7.0.6",
```
- dev dependencies (eslint)
This commit is contained in:
Mike Penz
2024-12-14 10:47:43 +01:00
parent 6816fa4115
commit 3fcaf9d47c
10 changed files with 1410 additions and 1190 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ export class GithubRepository extends BaseRepository {
// This is because the GitHub API limits the number of commits returned in a single response.
let commits: RestEndpointMethodTypes['repos']['compareCommits']['response']['data']['commits'] = []
let compareHead = head
// eslint-disable-next-line no-constant-condition
while (true) {
const compareResult = await this.octokit.repos.compareCommits({
owner,
@@ -249,7 +249,7 @@ export class GithubRepository extends BaseRepository {
const release: ReleaseInformation = response.data as ReleaseInformation
tagInfo.date = moment(release.created_at)
core.info(`️ Retrieved information about the release associated with ${tagInfo.name} from the GitHub API`)
} catch (error) {
} catch {
tagInfo = await this.getTagByCreateTime(repositoryPath, tagInfo)
}
return tagInfo