Use const instead of let (linting)

pull/98/head
Josh Gross 6 years ago
parent bf14e13581
commit b0d13db408

@ -24,12 +24,12 @@ async function run(): Promise<void> {
return;
}
let cachePath = utils.resolvePath(
const cachePath = utils.resolvePath(
core.getInput(Inputs.Path, { required: true })
);
core.debug(`Cache Path: ${cachePath}`);
let archivePath = path.join(
const archivePath = path.join(
await utils.createTempDirectory(),
"cache.tgz"
);

Loading…
Cancel
Save