Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Final change
  • Loading branch information
vsvipul committed Feb 10, 2022
1 parent 64d30fb commit 47ad7e4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Binary file modified actions-cache-1.0.9.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/restore/index.js
Expand Up @@ -36021,9 +36021,9 @@ function createTar(archiveFolder, sourceDirectories, compressionMethod) {
function getCompressionProgram() {
switch (compressionMethod) {
case constants_1.CompressionMethod.Zstd:
return ['--use-compress-program', 'zstd -T0 --long=30'];
return ['--use-compress-program', 'zstd -T0 --fast=1 --long=30'];
case constants_1.CompressionMethod.ZstdWithoutLong:
return ['--use-compress-program', 'zstd -T0'];
return ['--use-compress-program', 'zstd -T0 --fast=1'];
default:
return ['-z'];
}
Expand Down
4 changes: 2 additions & 2 deletions dist/save/index.js
Expand Up @@ -36021,9 +36021,9 @@ function createTar(archiveFolder, sourceDirectories, compressionMethod) {
function getCompressionProgram() {
switch (compressionMethod) {
case constants_1.CompressionMethod.Zstd:
return ['--use-compress-program', 'zstd -T0 --long=30'];
return ['--use-compress-program', 'zstd -T0 --fast=1 --long=30'];
case constants_1.CompressionMethod.ZstdWithoutLong:
return ['--use-compress-program', 'zstd -T0'];
return ['--use-compress-program', 'zstd -T0 --fast=1'];
default:
return ['-z'];
}
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 47ad7e4

Please sign in to comment.