mirror of
https://github.com/actions/cache.git
synced 2024-11-10 06:31:07 +07:00
354a2ae15e
* Consuming 3.0 actions/cache * formatting and error * updated package version * resolve package * dist * review comment * dist * dist
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import * as cache from "@actions/cache";
|
|
import * as core from "@actions/core";
|
|
|
|
import { Events, Inputs, State } from "./constants";
|
|
import * as utils from "./utils/actionUtils";
|
|
|
|
async function run(): Promise<void> {
|
|
try {
|
|
if (!utils.isCacheFeatureAvailable()) {
|
|
utils.setCacheHitOutput(false);
|
|
return;
|
|
}
|
|
|
|
// Validate inputs, this can cause task failure
|
|
if (!utils.isValidEvent()) {
|
|
utils.logWarning(
|
|
`Event Validation Error: The event type ${
|
|
process.env[Events.Key]
|
|
} is not supported because it's not tied to a branch or tag ref.`
|
|
);
|
|
return;
|
|
}
|
|
|
|
const primaryKey = core.getInput(Inputs.Key, { required: true });
|
|
core.saveState(State.CachePrimaryKey, primaryKey);
|
|
|
|
const restoreKeys = utils.getInputAsArray(Inputs.RestoreKeys);
|
|
const cachePaths = utils.getInputAsArray(Inputs.Path, {
|
|
required: true
|
|
});
|
|
|
|
const cacheKey = await cache.restoreCache(
|
|
cachePaths,
|
|
primaryKey,
|
|
restoreKeys
|
|
);
|
|
|
|
if (!cacheKey) {
|
|
core.info(
|
|
`Cache not found for input keys: ${[
|
|
primaryKey,
|
|
...restoreKeys
|
|
].join(", ")}`
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
// Store the matched cache key
|
|
utils.setCacheState(cacheKey);
|
|
|
|
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
|
|
utils.setCacheHitOutput(isExactKeyMatch);
|
|
core.info(`Cache restored from key: ${cacheKey}`);
|
|
} catch (error: unknown) {
|
|
core.setFailed((error as Error).message);
|
|
}
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|