@actions/cache
Advanced tools
Comparing version 1.0.10 to 1.0.11
@@ -206,3 +206,4 @@ "use strict"; | ||
// on 64-bit systems), split the download into multiple segments | ||
const maxSegmentSize = buffer.constants.MAX_LENGTH; | ||
// ~2 GB = 2147483647, beyond this, we start getting out of range error. So, capping it accordingly. | ||
const maxSegmentSize = Math.min(2147483647, buffer.constants.MAX_LENGTH); | ||
const downloadProgress = new DownloadProgress(contentLength); | ||
@@ -209,0 +210,0 @@ const fd = fs.openSync(archivePath, 'w'); |
{ | ||
"name": "@actions/cache", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"preview": true, | ||
@@ -5,0 +5,0 @@ "description": "Actions cache lib", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
90569
1341