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 { 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) {