mirror of
https://github.com/actions/setup-go.git
synced 2025-08-18 14:45:08 +00:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
export enum State {
|
|
CacheModPrimaryKey = 'CACHE_KEY',
|
|
CacheModMatchedKey = 'CACHE_RESULT',
|
|
CacheBuildPrimaryKey = 'CACHE_BUILD_KEY',
|
|
CacheBuildMatchedKey = 'CACHE_BUILD_RESULT'
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheModHit = 'cache-hit',
|
|
CacheBuildHit = 'cache-build-hit'
|
|
}
|