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
@@ -3507,20 +3506,9 @@ function exportVariable(name, val) {
3507
3506
process.env[name] = convertedVal;
3508
3507
const filePath = process.env['GITHUB_ENV'] || '';
3509
3508
if (filePath) {
3510
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
3511
-
// 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.
3512
-
if (name.includes(delimiter)) {
3513
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
3514
-
}
3515
-
if (convertedVal.includes(delimiter)) {
3516
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
@@ -3507,20 +3506,9 @@ function exportVariable(name, val) {
3507
3506
process.env[name] = convertedVal;
3508
3507
const filePath = process.env['GITHUB_ENV'] || '';
3509
3508
if (filePath) {
3510
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
3511
-
// 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.
3512
-
if (name.includes(delimiter)) {
3513
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
3514
-
}
3515
-
if (convertedVal.includes(delimiter)) {
3516
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
0 commit comments