We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9581336 commit cbea708Copy full SHA for cbea708
src/helpers.ts
@@ -30,7 +30,8 @@ export function translateEnvVariables() {
30
'USE_EXISTING_CREDENTIALS',
31
];
32
// Treat HTTPS_PROXY as HTTP_PROXY. Precedence is HTTPS_PROXY > HTTP_PROXY
33
- 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;
34
+
35
for (const envVar of envVars) {
36
if (process.env[envVar]) {
37
const inputKey = `INPUT_${envVar.replace(/_/g, '-')}`;
0 commit comments