From: Sebastián Ramírez Date: Thu, 15 Aug 2024 00:36:49 +0000 (-0500) Subject: 🔧 Tweak Autofix GitHub Action X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bafb0abe30f1d6cb5e7283835675a5f5a4dbef07;p=thirdparty%2Ffastapi%2Ffastapi.git 🔧 Tweak Autofix GitHub Action --- diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 7f0c773345..5413979267 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -22,12 +22,10 @@ jobs: id: cache with: path: ${{ env.pythonLocation }} - key: ${{ runner.os }}-python-github-actions-${{ env.pythonLocation }}-${{ hashFiles('requirements-github-actions.txt') }}-v01 + key: ${{ runner.os }}-python-autofix-${{ env.pythonLocation }}-${{ hashFiles('requirements-autofix.txt') }}-v01 - name: Install GitHub Actions dependencies if: steps.cache.outputs.cache-hit != 'true' - run: | - pip install -r requirements-github-actions.txt - pip install pre-commit + run: pip install -r requirements-autofix.txt - name: Get changed files id: changed-files uses: tj-actions/changed-files@v44