From 7d38ccdea07991a04687f5837e44f319c738a347 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 2 Sep 2024 14:46:07 +1200 Subject: [PATCH] try fix workflows permissions --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9fcfe77..f3c2ad8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,10 +7,15 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: +permissions: {} + jobs: build: runs-on: ubuntu-latest - + permissions: + contents: write + id-token: write + pull-requests: write steps: - uses: actions/checkout@v3 with: