npm run build

This commit is contained in:
Aparna Jyothi 2025-07-14 18:01:04 +05:30
parent df266560b3
commit c33e178e6a

3
dist/setup/index.js vendored
View file

@ -96883,10 +96883,9 @@ function isGraalPyVersion(versionSpec) {
}
function cacheDependencies(cache, pythonVersion) {
return __awaiter(this, void 0, void 0, function* () {
var _a;
const cacheDependencyPath = core.getInput('cache-dependency-path') || undefined;
let resolvedDependencyPath = undefined;
const overwrite = (_a = core.getBooleanInput('overwrite', { required: false })) !== null && _a !== void 0 ? _a : false;
const overwrite = core.getBooleanInput('overwrite', { required: false });
if (cacheDependencyPath) {
const actionPath = process.env.GITHUB_ACTION_PATH || '';
const workspace = process.env.GITHUB_WORKSPACE || process.cwd();