- 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user