chore: Update dist
This commit is contained in:
parent
cbea70821e
commit
c7b374462f
2 changed files with 4 additions and 2 deletions
3
dist/cleanup/index.js
generated
vendored
3
dist/cleanup/index.js
generated
vendored
|
|
@ -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, '-')}`;
|
||||
|
|
|
|||
3
dist/index.js
generated
vendored
3
dist/index.js
generated
vendored
|
|
@ -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, '-')}`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue