From a76826ef46eda2ed649a006956884f6690917102 Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Tue, 6 Dec 2022 10:07:30 +0000 Subject: [PATCH] Removed commented lines --- src/restoreImpl.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/restoreImpl.ts b/src/restoreImpl.ts index 679dcd2..3bbc840 100644 --- a/src/restoreImpl.ts +++ b/src/restoreImpl.ts @@ -48,14 +48,12 @@ async function run(outputter: IOutputSetter): Promise { } // Store the matched cache key in states - //utils.setCacheState(cacheKey); outputter.setState(State.CacheMatchedKey, cacheKey); const isExactKeyMatch = utils.isExactKeyMatch( core.getInput(Inputs.Key, { required: true }), cacheKey ); - //utils.setCacheHitOutput(isExactKeyMatch); outputter.setOutput(Outputs.CacheHit, isExactKeyMatch.toString()); core.info(`Cache restored from key: ${cacheKey}`);