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
@@ -170,20 +169,9 @@ function exportVariable(name, val) {
170
169
process.env[name] = convertedVal;
171
170
const filePath = process.env['GITHUB_ENV'] || '';
172
171
if (filePath) {
173
-
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
174
-
// 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.
175
-
if (name.includes(delimiter)) {
176
-
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
177
-
}
178
-
if (convertedVal.includes(delimiter)) {
179
-
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"private": true,
3
-
"version": "3.0.0",
3
+
"version": "3.0.1",
4
4
"license": "MIT",
5
5
"description": "This package.json is here purely to control the version of the Action, in combination with https://github.com/JamesHenry/publish-shell-action",
0 commit comments