@actions/cache
Advanced tools
Comparing version 3.0.4 to 3.0.5
{ | ||
"name": "@actions/cache", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"preview": true, | ||
@@ -40,3 +40,3 @@ "description": "Actions cache lib", | ||
"dependencies": { | ||
"@actions/core": "^1.2.6", | ||
"@actions/core": "^1.10.0", | ||
"@actions/exec": "^1.0.1", | ||
@@ -43,0 +43,0 @@ "@actions/glob": "^0.1.0", |
@@ -5,3 +5,3 @@ # `@actions/cache` | ||
See ["Caching dependencies to speed up workflows"](https://help.github.com/github/automating-your-workflow-with-github-actions/caching-dependencies-to-speed-up-workflows) for how caching works. | ||
See ["Caching dependencies to speed up workflows"](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows) for how caching works. | ||
@@ -12,7 +12,7 @@ Note that GitHub will remove any cache entries that have not been accessed in over 7 days. There is no limit on the number of caches you can store, but the total size of all caches in a repository is limited to 10 GB. If you exceed this limit, GitHub will save your cache but will begin evicting caches until the total size is less than 10 GB. | ||
This package is used by the v2+ versions of our first party cache action. You can find an example implementation in the cache repo [here](https://github.com/actions/cache). | ||
This package is used by the v2+ versions of our first party cache action. You can find an example implementation in the cache repo [here](https://github.com/actions/cache). | ||
#### Save Cache | ||
Saves a cache containing the files in `paths` using the `key` provided. The files would be compressed using zstandard compression algorithm if zstd is installed, otherwise gzip is used. Function returns the cache id if the cache was saved succesfully and throws an error if cache upload fails. | ||
Saves a cache containing the files in `paths` using the `key` provided. The files would be compressed using zstandard compression algorithm if zstd is installed, otherwise gzip is used. Function returns the cache id if the cache was saved succesfully and throws an error if cache upload fails. | ||
@@ -31,3 +31,3 @@ ```js | ||
Restores a cache based on `key` and `restoreKeys` to the `paths` provided. Function returns the cache key for cache hit and returns undefined if cache not found. | ||
Restores a cache based on `key` and `restoreKeys` to the `paths` provided. Function returns the cache key for cache hit and returns undefined if cache not found. | ||
@@ -52,2 +52,2 @@ ```js | ||
Default value of this timeout is 60 minutes and can be customized by specifying an [environment variable](https://docs.github.com/en/actions/learn-github-actions/environment-variables) named `SEGMENT_DOWNLOAD_TIMEOUT_MINS` with timeout value in minutes. | ||
Default value of this timeout is 60 minutes and can be customized by specifying an [environment variable](https://docs.github.com/en/actions/learn-github-actions/environment-variables) named `SEGMENT_DOWNLOAD_TIMEOUT_MINS` with timeout value in minutes. |
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
50
99109
+ Added@azure/core-rest-pipeline@1.18.1(transitive)
- Removed@azure/core-rest-pipeline@1.18.0(transitive)
Updated@actions/core@^1.10.0