diff --git a/packages/cache/src/internal/cacheUtils.ts b/packages/cache/src/internal/cacheUtils.ts index 64fef08a..03c52561 100644 --- a/packages/cache/src/internal/cacheUtils.ts +++ b/packages/cache/src/internal/cacheUtils.ts @@ -94,10 +94,10 @@ async function getVersion(app: string): Promise { // Use zstandard if possible to maximize cache performance export async function getCompressionMethod(): Promise { - if (process.platform === 'win32' && !(await getGnuTarPathOnWindows())) { - // Disable zstd due to bug https://github.com/actions/cache/issues/301 - return CompressionMethod.Gzip - } + // if (process.platform === 'win32' && !(await getGnuTarPathOnWindows())) { + // // Disable zstd due to bug https://github.com/actions/cache/issues/301 + // return CompressionMethod.Gzip + // } const versionOutput = await getVersion('zstd') const version = semver.clean(versionOutput)