From 06cd3feb954c90f1ad3be66352d20465a6825c2c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 14 Aug 2024 19:38:33 -0500 Subject: [PATCH] =?utf8?q?=F0=9F=94=A7=20Update=20Autofix?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .github/workflows/autofix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 5413979267..d3629c9f91 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -23,7 +23,7 @@ jobs: with: path: ${{ env.pythonLocation }} key: ${{ runner.os }}-python-autofix-${{ env.pythonLocation }}-${{ hashFiles('requirements-autofix.txt') }}-v01 - - name: Install GitHub Actions dependencies + - name: Install dependencies if: steps.cache.outputs.cache-hit != 'true' run: pip install -r requirements-autofix.txt - name: Get changed files @@ -34,7 +34,7 @@ jobs: with: path: ~/.cache/pre-commit key: ${{ runner.os }}-pre-commit-hooks-${{ hashFiles('.pre-commit-config.yml') }}-v01 - - run: pre-commit run ${{ steps.changed-files.outputs.all_changed_files }} + - run: pre-commit run --files ${{ steps.changed-files.outputs.all_changed_files }} # Allow debugging with tmate - name: Setup tmate session uses: mxschmitt/action-tmate@v3 -- 2.47.3