From 1797432cb75de95016f2e2078554404701e81982 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 30 Sep 2022 15:18:42 -0400 Subject: [PATCH] Fix typo --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 3ad11038..c82fbee9 100644 --- a/src/main.ts +++ b/src/main.ts @@ -62,7 +62,7 @@ export async function run() { if (cache && isCacheFeatureAvailable()) { const cacheDependencyPath = core.getInput('cache-dependency-path'); - await restoreCache(cache, cacheDependencyPath, installedVersion); + await restoreCache(installedVersion, cache, cacheDependencyPath); } const matchersPath = path.join(__dirname, '../..', '.github');