Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
Irene Alvarado committed May 26, 2021
2 parents 5ed3a51 + 6283443 commit 471ce76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ async function run() {
core.startGroup('Postprocess');
core.debug(`Invoking ${config.postprocess} with ${filename}...`);
try {
const raw = child_process_1.execSync(`deno run -q -A --unstable ${config.postprocess} ${filename}`).toString();
const raw = child_process_1.execSync(`deno run -q --allow-read --allow-write --allow-run --allow-net --allow-env --unstable ${config.postprocess} ${filename}`).toString();
core.info("Deno output:");
core.info(raw);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function run(): Promise<void> {
core.debug(`Invoking ${config.postprocess} with ${filename}...`)
try {
const raw = execSync(
`deno run -q -A --unstable ${config.postprocess} ${filename}`
`deno run -q --allow-read --allow-write --allow-run --allow-net --allow-env --unstable ${config.postprocess} ${filename}`
).toString()

core.info("Deno output:")
Expand Down

0 comments on commit 471ce76

Please sign in to comment.