From ae0d588378c528a97635c7dc4345fff2a2ff5dac Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Thu, 12 Mar 2026 05:17:26 +0000 Subject: [PATCH] Remove use of andstor/file-existence-action (#16) --- .github/workflows/qmk_userspace_build.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/qmk_userspace_build.yml b/.github/workflows/qmk_userspace_build.yml index 2258ea0..579e2ec 100644 --- a/.github/workflows/qmk_userspace_build.yml +++ b/.github/workflows/qmk_userspace_build.yml @@ -35,15 +35,9 @@ jobs: token: ${{ github.token }} submodules: recursive - - name: Check if qmk_firmware exists - id: check_files - uses: andstor/file-existence-action@v3 - with: - files: qmk_firmware - - name: Checkout QMK Firmware uses: actions/checkout@v6 - if: steps.check_files.outputs.files_exists == 'false' + if: ${{ hashFiles('qmk_firmware/requirements.txt') == '' }} with: token: ${{ github.token }} path: qmk_firmware