From 775e08a6dcbc3e630ad7a7b3c229749f8169cc5b Mon Sep 17 00:00:00 2001 From: Efe Date: Fri, 12 Jan 2024 14:32:52 +0100 Subject: [PATCH] Req check script wf --- .github/workflows/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 55f826187018..5bd44d2115fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -88,10 +88,6 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - uses: dorny/paths-filter@v2 - - uses: actions/setup-python@v4 - with: - # Semantic version range syntax or exact version of a Python version - python-version: '3.x' id: filter with: filters: | @@ -99,6 +95,9 @@ jobs: - 'bin/utils/**' workflow: - '.github/workflows/**' + - uses: actions/setup-python@v4 + with: + python-version: '3.x' - name: Run the request checking script on local mcm requests #shell: python if: steps.filter.outputs.bin == 'true' || steps.filter.outputs.workflow == 'true'