You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1461,20 +1460,9 @@ function exportVariable(name, val) {
1461
1460
process.env[name] = convertedVal;
1462
1461
const filePath = process.env['GITHUB_ENV'] || '';
1463
1462
if (filePath) {
1464
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
1465
-
// These should realistically never happen, but just in case someone finds a way to exploit uuid generation let's not allow keys or values that contain the delimiter.
1466
-
if (name.includes(delimiter)) {
1467
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
1468
-
}
1469
-
if (convertedVal.includes(delimiter)) {
1470
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
@@ -1461,20 +1460,9 @@ function exportVariable(name, val) {
1461
1460
process.env[name] = convertedVal;
1462
1461
const filePath = process.env['GITHUB_ENV'] || '';
1463
1462
if (filePath) {
1464
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
1465
-
// These should realistically never happen, but just in case someone finds a way to exploit uuid generation let's not allow keys or values that contain the delimiter.
1466
-
if (name.includes(delimiter)) {
1467
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
1468
-
}
1469
-
if (convertedVal.includes(delimiter)) {
1470
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
0 commit comments