From 73acf8ff50ad35f094cca6a68665d1bba34e0f4e Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Fri, 1 Mar 2024 14:36:17 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20fix:=20deno=20needs=20permission?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deno.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml index 85051ff5..eb81d460 100644 --- a/.github/workflows/deno.yml +++ b/.github/workflows/deno.yml @@ -32,7 +32,7 @@ jobs: deno-version: ${{ matrix.deno }} # tests across multiple Deno versions - name: Check - run: deno run mod.ts + run: deno run --allow-read mod.ts - name: Check Deploy - run: deno run deploy.ts + run: deno run --allow-read deploy.ts