Skip to content

Commit 471ce76

Browse files
author
Irene Alvarado
committed
Merge main
2 parents 5ed3a51 + 6283443 commit 471ce76

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ async function run() {
491491
core.startGroup('Postprocess');
492492
core.debug(`Invoking ${config.postprocess} with ${filename}...`);
493493
try {
494-
const raw = child_process_1.execSync(`deno run -q -A --unstable ${config.postprocess} ${filename}`).toString();
494+
const raw = child_process_1.execSync(`deno run -q --allow-read --allow-write --allow-run --allow-net --allow-env --unstable ${config.postprocess} ${filename}`).toString();
495495
core.info("Deno output:");
496496
core.info(raw);
497497
}

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async function run(): Promise<void> {
6161
core.debug(`Invoking ${config.postprocess} with ${filename}...`)
6262
try {
6363
const raw = execSync(
64-
`deno run -q -A --unstable ${config.postprocess} ${filename}`
64+
`deno run -q --allow-read --allow-write --allow-run --allow-net --allow-env --unstable ${config.postprocess} ${filename}`
6565
).toString()
6666

6767
core.info("Deno output:")

0 commit comments

Comments
 (0)