1
0
Fork 0

Merge pull request #471 from actions/aiyan/minor-edit

Fix a bug with getCompressionMethod and minor edit to release note
pull/476/head
Aiqiao Yan 2020-05-19 16:42:40 -04:00 committed by GitHub
commit 30e0a77337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 4 deletions

View File

@ -5,4 +5,7 @@
- Initial release
### 0.2.0
- Fixes two issues around using zstd compression algorithm
- Fixes issues with the zstd compression algorithm on Windows and Ubuntu 16.04 [#469](https://github.com/actions/toolkit/pull/469)
### 0.2.1
- Fix to await async function getCompressionMethod

2
packages/cache/package-lock.json generated vendored
View File

@ -1,6 +1,6 @@
{
"name": "@actions/cache",
"version": "0.2.0",
"version": "0.2.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@actions/cache",
"version": "0.2.0",
"version": "0.2.1",
"preview": true,
"description": "Actions cache lib",
"keywords": [

View File

@ -83,7 +83,7 @@ async function getVersion(app: string): Promise<string> {
// Use zstandard if possible to maximize cache performance
export async function getCompressionMethod(): Promise<CompressionMethod> {
if (process.platform === 'win32' && !isGnuTarInstalled()) {
if (process.platform === 'win32' && !(await isGnuTarInstalled())) {
// Disable zstd due to bug https://github.com/actions/cache/issues/301
return CompressionMethod.Gzip
}