From 7a46e1499df9ecc810d9160b824dd28b7fedfda2 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Sun, 25 Feb 2024 07:28:58 +0100 Subject: [PATCH] ci(autoblack): use the now available official psf/black github action --- .github/workflows/autoblack.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autoblack.yml b/.github/workflows/autoblack.yml index d0ef3531..87c3d722 100644 --- a/.github/workflows/autoblack.yml +++ b/.github/workflows/autoblack.yml @@ -10,13 +10,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check files using the black formatter - uses: psf/black@v24 + uses: psf/black@stable id: black with: black_args: "." continue-on-error: true - name: Create Pull Request - if: steps.action_black.outputs.is_formatted == 'true' + if: steps.black.outputs.is_formatted == 'true' uses: peter-evans/create-pull-request@v6 with: token: ${{ secrets.GITHUB_TOKEN }}