diff --git a/dist/restore/index.js b/dist/restore/index.js
index ca3896b..7399c50 100644
--- a/dist/restore/index.js
+++ b/dist/restore/index.js
@@ -1626,7 +1626,7 @@ function uploadFile(restClient, cacheId, archivePath) {
         const threads = new Array(concurrency);
         core.debug("Awaiting all uploads");
         let offset = 0;
-        Promise.all(threads.map(() => __awaiter(this, void 0, void 0, function* () {
+        yield Promise.all(threads.map(() => __awaiter(this, void 0, void 0, function* () {
             while (offset < fileSize) {
                 const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE;
                 const start = offset;
diff --git a/dist/save/index.js b/dist/save/index.js
index 7cd1df9..edeff58 100644
--- a/dist/save/index.js
+++ b/dist/save/index.js
@@ -1626,7 +1626,7 @@ function uploadFile(restClient, cacheId, archivePath) {
         const threads = new Array(concurrency);
         core.debug("Awaiting all uploads");
         let offset = 0;
-        Promise.all(threads.map(() => __awaiter(this, void 0, void 0, function* () {
+        yield Promise.all(threads.map(() => __awaiter(this, void 0, void 0, function* () {
             while (offset < fileSize) {
                 const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE;
                 const start = offset;
diff --git a/src/cacheHttpClient.ts b/src/cacheHttpClient.ts
index 00dcc7d..2433a68 100644
--- a/src/cacheHttpClient.ts
+++ b/src/cacheHttpClient.ts
@@ -185,7 +185,7 @@ async function uploadFile(restClient: RestClient, cacheId: number, archivePath:
     const threads = new Array(concurrency);
     core.debug("Awaiting all uploads");
     let offset = 0;
-    Promise.all(threads.map(async () => { // This might not work cause something something closures
+    await Promise.all(threads.map(async () => { // This might not work cause something something closures
         while (offset < fileSize) {
             const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE;
             const start = offset;