From 24f18a93cfedda62e2b33db69a0092cc085337d3 Mon Sep 17 00:00:00 2001 From: Dan Hecker Date: Fri, 19 Dec 2025 08:08:12 -0500 Subject: [PATCH] Update src/setup-python.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/setup-python.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/setup-python.ts b/src/setup-python.ts index d004a3af..132c42f1 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -164,6 +164,8 @@ async function run() { if (pypiUrl) { const pypiUsername = core.getInput('pypi-username'); const pypiPassword = core.getInput('pypi-password'); + core.setSecret(pypiUsername); + core.setSecret(pypiPassword); await configurePipRepository(pypiUrl, pypiUsername, pypiPassword); } const pipInstall = core.getInput('pip-install');