3
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-23 03:45:31 +00:00

fix merge

This commit is contained in:
Bishal Prasad 2022-12-06 18:45:12 +00:00
parent 34e917cb7d
commit 657c52f11e
2 changed files with 34 additions and 107 deletions

View file

@ -5,7 +5,7 @@ import { Events, Inputs, Outputs, State } from "./constants";
import { IStateProvider } from "./stateProvider";
import * as utils from "./utils/actionUtils";
async function restoreImpl(outputter: IStateProvider): Promise<string | undefined> {
async function restoreImpl(stateProvider: IStateProvider): Promise<string | undefined> {
try {
if (!utils.isCacheFeatureAvailable()) {
utils.setCacheHitOutput(false);
@ -48,7 +48,7 @@ async function restoreImpl(outputter: IStateProvider): Promise<string | undefine
}
// Store the matched cache key in states
outputter.setState(State.CacheMatchedKey, cacheKey);
stateProvider.setState(State.CacheMatchedKey, cacheKey);
const isExactKeyMatch = utils.isExactKeyMatch(
core.getInput(Inputs.Key, { required: true }),