From c7b374462fbf61eb1ede69c00a25ad9cac2de45c Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 4 Aug 2025 20:30:15 +0000 Subject: [PATCH] chore: Update dist --- dist/cleanup/index.js | 3 ++- dist/index.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dist/cleanup/index.js b/dist/cleanup/index.js index 263790c..fe18db7 100644 --- a/dist/cleanup/index.js +++ b/dist/cleanup/index.js @@ -48054,7 +48054,8 @@ function translateEnvVariables() { 'USE_EXISTING_CREDENTIALS', ]; // Treat HTTPS_PROXY as HTTP_PROXY. Precedence is HTTPS_PROXY > HTTP_PROXY - process.env.HTTP_PROXY = process.env.HTTPS_PROXY || process.env.HTTP_PROXY || undefined; + if (process.env.HTTPS_PROXY) + process.env.HTTP_PROXY = process.env.HTTPS_PROXY; for (const envVar of envVars) { if (process.env[envVar]) { const inputKey = `INPUT_${envVar.replace(/_/g, '-')}`; diff --git a/dist/index.js b/dist/index.js index 920aa7b..e7caca4 100644 --- a/dist/index.js +++ b/dist/index.js @@ -304,7 +304,8 @@ function translateEnvVariables() { 'USE_EXISTING_CREDENTIALS', ]; // Treat HTTPS_PROXY as HTTP_PROXY. Precedence is HTTPS_PROXY > HTTP_PROXY - process.env.HTTP_PROXY = process.env.HTTPS_PROXY || process.env.HTTP_PROXY || undefined; + if (process.env.HTTPS_PROXY) + process.env.HTTP_PROXY = process.env.HTTPS_PROXY; for (const envVar of envVars) { if (process.env[envVar]) { const inputKey = `INPUT_${envVar.replace(/_/g, '-')}`;