We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee36e8b commit 7d02032Copy full SHA for 7d02032
src/main.ts
@@ -20,7 +20,6 @@ export async function run() {
20
const version = resolveVersionInput();
21
22
let arch = core.getInput('architecture');
23
- const cache = core.getInput('cache');
24
25
// if architecture supplied but node-version is not
26
// if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
@@ -60,6 +59,7 @@ export async function run() {
60
59
auth.configAuthentication(registryUrl, alwaysAuth);
61
}
62
+ const cache = core.getInput('cache');
63
if (cache && isCacheFeatureAvailable()) {
64
core.saveState(State.CachePackageManager, cache);
65
const cacheDependencyPath = core.getInput('cache-dependency-path');
0 commit comments