From df266560b32407013a4f32aa07461513bb752e74 Mon Sep 17 00:00:00 2001 From: aparnajyothi-y <147696841+aparnajyothi-y@users.noreply.github.com> Date: Mon, 14 Jul 2025 17:59:48 +0530 Subject: [PATCH] Update src/setup-python.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/setup-python.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/setup-python.ts b/src/setup-python.ts index e09231f9..90739842 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -25,8 +25,7 @@ export async function cacheDependencies(cache: string, pythonVersion: string) { const cacheDependencyPath = core.getInput('cache-dependency-path') || undefined; let resolvedDependencyPath: string | undefined = undefined; - const overwrite = - core.getBooleanInput('overwrite', {required: false}) ?? false; + const overwrite = core.getBooleanInput('overwrite', {required: false}); if (cacheDependencyPath) { const actionPath = process.env.GITHUB_ACTION_PATH || '';