From f8e5907ab9c1a48854fefbe984cdb70657deaa50 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 26 Apr 2022 13:29:55 -0400 Subject: [PATCH] Fixes CI workflows --- .github/workflows/cd-insiders.yml | 2 ++ .github/workflows/cd-stable.yml | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd-insiders.yml b/.github/workflows/cd-insiders.yml index 3e45efe..72cb636 100644 --- a/.github/workflows/cd-insiders.yml +++ b/.github/workflows/cd-insiders.yml @@ -9,6 +9,8 @@ jobs: check: name: Check for updates runs-on: ubuntu-latest + permissions: + contents: read outputs: status: ${{ steps.earlyexit.outputs.status }} steps: diff --git a/.github/workflows/cd-stable.yml b/.github/workflows/cd-stable.yml index 0f2725c..9019e1b 100644 --- a/.github/workflows/cd-stable.yml +++ b/.github/workflows/cd-stable.yml @@ -9,9 +9,10 @@ jobs: build: name: Publish Stable runs-on: ubuntu-latest - # permissions: - # deployments: write - # packages: write + permissions: + contents: read + # deployments: write + # packages: write steps: - name: Checkout code uses: actions/checkout@v3