mirror of
https://github.com/actions/cache
synced 2026-06-11 00:13:43 -07:00
Use zstd instead of gzip if available
Add zstd to cache versioning
This commit is contained in:
Vendored
+6
@@ -1,3 +1,5 @@
|
||||
import { CompressionMethod } from "./constants";
|
||||
|
||||
export interface ArtifactCacheEntry {
|
||||
cacheKey?: string;
|
||||
scope?: string;
|
||||
@@ -17,3 +19,7 @@ export interface ReserveCacheRequest {
|
||||
export interface ReserveCacheResponse {
|
||||
cacheId: number;
|
||||
}
|
||||
|
||||
export interface CacheOptions {
|
||||
compressionMethod?: CompressionMethod;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user