mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 03:38:36 +08:00 
			
		
		
		
	added stateprovider changes
This commit is contained in:
		
							parent
							
								
									91d7bd61be
								
							
						
					
					
						commit
						c0cc8dd60a
					
				|  | @ -1,6 +1,6 @@ | ||||||
| import * as core from "@actions/core"; | import * as core from "@actions/core"; | ||||||
| 
 | 
 | ||||||
| import { State, stateToOutputMap } from "./constants"; | import { Outputs, State } from "./constants"; | ||||||
| 
 | 
 | ||||||
| export interface IStateProvider { | export interface IStateProvider { | ||||||
|     setState(key: string, value: string): void; |     setState(key: string, value: string): void; | ||||||
|  | @ -33,8 +33,13 @@ export class StateProvider extends StateProviderBase { | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| export class NullStateProvider extends StateProviderBase { | export class NullStateProvider extends StateProviderBase { | ||||||
|  |     stateToOutputMap = new Map<string, string>([ | ||||||
|  |         [State.CacheMatchedKey, Outputs.CacheRestoreKey], | ||||||
|  |         [State.CachePrimaryKey, Outputs.CachePrimaryKey] | ||||||
|  |     ]); | ||||||
|  | 
 | ||||||
|     setState = (key: string, value: string) => { |     setState = (key: string, value: string) => { | ||||||
|         core.setOutput(stateToOutputMap.get(key) as string, value); |         core.setOutput(this.stateToOutputMap.get(key) as string, value); | ||||||
|     }; |     }; | ||||||
|     // eslint-disable-next-line @typescript-eslint/no-unused-vars
 |     // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | ||||||
|     getState = (key: string) => ""; |     getState = (key: string) => ""; | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Sankalp Kotewar
						Sankalp Kotewar