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
@@ -4861,20 +4860,9 @@ function exportVariable(name, val) {
4861
4860
process.env[name] = convertedVal;
4862
4861
const filePath = process.env['GITHUB_ENV'] || '';
4863
4862
if (filePath) {
4864
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
4865
-
// 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.
4866
-
if (name.includes(delimiter)) {
4867
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
4868
-
}
4869
-
if (convertedVal.includes(delimiter)) {
4870
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
@@ -4861,20 +4860,9 @@ function exportVariable(name, val) {
4861
4860
process.env[name] = convertedVal;
4862
4861
const filePath = process.env['GITHUB_ENV'] || '';
4863
4862
if (filePath) {
4864
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
4865
-
// 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.
4866
-
if (name.includes(delimiter)) {
4867
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
4868
-
}
4869
-
if (convertedVal.includes(delimiter)) {
4870
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
0 commit comments