1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-19 19:46:17 +02:00

Use const instead of let (linting)

This commit is contained in:
Josh Gross 2019-11-14 17:00:53 -05:00
parent bf14e13581
commit b0d13db408

View file

@ -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"
);