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
@@ -4895,20 +4894,9 @@ function exportVariable(name, val) {
4895
4894
process.env[name] = convertedVal;
4896
4895
const filePath = process.env['GITHUB_ENV'] || '';
4897
4896
if (filePath) {
4898
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
4899
-
// 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.
4900
-
if (name.includes(delimiter)) {
4901
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
4902
-
}
4903
-
if (convertedVal.includes(delimiter)) {
4904
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
@@ -4895,20 +4894,9 @@ function exportVariable(name, val) {
4895
4894
process.env[name] = convertedVal;
4896
4895
const filePath = process.env['GITHUB_ENV'] || '';
4897
4896
if (filePath) {
4898
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
4899
-
// 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.
4900
-
if (name.includes(delimiter)) {
4901
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
4902
-
}
4903
-
if (convertedVal.includes(delimiter)) {
4904
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
0 commit comments