mirror of
				https://gitea.com/actions/cache.git
				synced 2025-10-29 07:47:12 +00:00 
			
		
		
		
	added stateprovider changes
This commit is contained in:
		| @@ -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) => ""; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sankalp Kotewar
					Sankalp Kotewar