From bafb0abe30f1d6cb5e7283835675a5f5a4dbef07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= <tiangolo@gmail.com> Date: Wed, 14 Aug 2024 19:36:49 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Tweak=20Autofix=20GitHub=20Actio?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/autofix.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 7f0c77334..541397926 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