Unrelated to the above Am I right in
Unrelated to the above: Am I right in saying that I can't write to the file system in an action?
2 Replies
You should be able to use temp directories in actions that run in Node.js. Otherwise, no. Also note that if you write to a temp directory, there is no gurantee the data will be there the next time we execute the action since the execution might or might not use a different container.
Yup, understood. Writing to a temp dir seems to work - thanks!