Bump typescript from 4.3.5 to 4.4.2 (#218)

* Bump typescript from 4.3.5 to 4.4.2

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.3.5 to 4.4.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.3.5...v4.4.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* explicitly coerece to `any` to avoid ts type errors

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Patrick Ellis <patrick.j.ellis@gmail.com>
This commit is contained in:
dependabot[bot]
2021-09-02 14:30:05 +02:00
committed by GitHub
parent 6afffb2e30
commit faa881dd1b
3 changed files with 9 additions and 9 deletions

View File

@@ -56,7 +56,7 @@ export async function run() {
if (syncLabels && labelsToRemove.length) {
await removeLabels(client, prNumber, labelsToRemove);
}
} catch (error) {
} catch (error: any) {
core.error(error);
core.setFailed(error.message);
}