From 1accfabeaf01a8074f3cc8fc10cdb6946204bade Mon Sep 17 00:00:00 2001 From: Luke Cartey Date: Wed, 11 Sep 2024 14:58:17 +0100 Subject: [PATCH] Checkout repository before calling check-permissions action --- .github/workflows/dispatch-matrix-check.yml | 3 +++ .github/workflows/dispatch-matrix-test-on-comment.yml | 3 +++ .github/workflows/dispatch-release-performance-check.yml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/.github/workflows/dispatch-matrix-check.yml b/.github/workflows/dispatch-matrix-check.yml index 458a7a6a58..afe78c948c 100644 --- a/.github/workflows/dispatch-matrix-check.yml +++ b/.github/workflows/dispatch-matrix-check.yml @@ -11,6 +11,9 @@ jobs: dispatch-matrix-check: runs-on: ubuntu-22.04 steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Check permission id: check-write-permission uses: ./.github/actions/check-permissions diff --git a/.github/workflows/dispatch-matrix-test-on-comment.yml b/.github/workflows/dispatch-matrix-test-on-comment.yml index 4dc69a035a..98e1f9b7ba 100644 --- a/.github/workflows/dispatch-matrix-test-on-comment.yml +++ b/.github/workflows/dispatch-matrix-test-on-comment.yml @@ -8,6 +8,9 @@ jobs: dispatch-matrix-check: runs-on: ubuntu-22.04 steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Check permission id: check-write-permission uses: ./.github/actions/check-permissions diff --git a/.github/workflows/dispatch-release-performance-check.yml b/.github/workflows/dispatch-release-performance-check.yml index 8933495382..64863b8b05 100644 --- a/.github/workflows/dispatch-release-performance-check.yml +++ b/.github/workflows/dispatch-release-performance-check.yml @@ -8,6 +8,9 @@ jobs: dispatch-matrix-check: runs-on: ubuntu-22.04 steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Check permission id: check-write-permission uses: ./.github/actions/check-permissions