mirror of
https://github.com/actions/setup-go.git
synced 2025-07-17 20:45:13 -06:00

Such files as cache-restore.ts, cache-utils.ts, constants.ts, cache-save.ts we added. Main.ts file now incorporates logic for using files mentioned above.
8 lines
140 B
TypeScript
8 lines
140 B
TypeScript
export enum State {
|
|
CachePrimaryKey = 'CACHE_KEY',
|
|
CacheMatchedKey = 'CACHE_RESULT'
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheHit = 'cache-hit'
|
|
}
|