From b1ec4ebeab7bcf8d206bd1e2639443b21743233b Mon Sep 17 00:00:00 2001
From: David Hadka <dhadka@users.noreply.github.com>
Date: Sat, 1 Feb 2020 12:22:43 -0600
Subject: [PATCH] Update src/save.ts

Co-Authored-By: Josh Gross <joshmgross@github.com>
---
 src/save.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/save.ts b/src/save.ts
index f20dbcc..de03856 100644
--- a/src/save.ts
+++ b/src/save.ts
@@ -56,7 +56,7 @@ async function run(): Promise<void> {
 
         await createTar(archivePath, cachePath);
 
-        const fileSizeLimit = 5 * 1024 * 1024 * 1024; // 2GB per repo limit
+        const fileSizeLimit = 5 * 1024 * 1024 * 1024; // 5GB per repo limit
         const archiveFileSize = utils.getArchiveFileSize(archivePath);
         core.debug(`File Size: ${archiveFileSize}`);
         if (archiveFileSize > fileSizeLimit) {