Skip to content

Commit 59444f5

Browse files
authored
Merge pull request #359 from philips-labs/bugfix/support-typescript-4-1
Updates to support typescript 4.1
2 parents fdf1caa + 23d30dc commit 59444f5

File tree

1 file changed

+1
-1
lines changed
  • modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer

1 file changed

+1
-1
lines changed

modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async function uploadToS3(s3: S3, cacheObject: CacheObject, actionRunnerReleaseA
7272
Body: writeStream,
7373
}).promise();
7474

75-
await new Promise((resolve, reject) => {
75+
await new Promise<void>((resolve, reject) => {
7676
console.debug('Start downloading %s and uploading to S3.', actionRunnerReleaseAsset.name);
7777
request
7878
.get(actionRunnerReleaseAsset.downloadUrl)

0 commit comments

Comments
 (0)