mirror of
https://github.com/actions/toolkit.git
synced 2026-08-16 00:00:21 +02:00
Initial commit to create @actions/cache package
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
export enum CacheFilename {
|
||||
Gzip = 'cache.tgz',
|
||||
Zstd = 'cache.tzst'
|
||||
}
|
||||
|
||||
export enum CompressionMethod {
|
||||
Gzip = 'gzip',
|
||||
Zstd = 'zstd'
|
||||
}
|
||||
|
||||
// Socket timeout in milliseconds during download. If no traffic is received
|
||||
// over the socket during this period, the socket is destroyed and the download
|
||||
// is aborted.
|
||||
export const SocketTimeout = 5000
|
||||
Reference in New Issue
Block a user