Looking at the action script I found:
|
`deno run -q -A --unstable ${config.postprocess} ${filename}` |
Deno is run with -A flag which enables all permissions; it's probably not a big deal, but it seems that permissions could be restricted a bit to --allow-read, --allow-write, --allow-net and --allow-env; ie. disable ability to load native plugins, HR timing and spawning subprocesses.
Looking at the action script I found:
flat/src/main.ts
Line 44 in 1c5bd95
Deno is run with
-Aflag which enables all permissions; it's probably not a big deal, but it seems that permissions could be restricted a bit to--allow-read,--allow-write,--allow-netand--allow-env; ie. disable ability to load native plugins, HR timing and spawning subprocesses.