From 2797c69a218e3de025bb54e2d17ef79768466b03 Mon Sep 17 00:00:00 2001 From: k9ert Date: Thu, 2 Feb 2023 17:10:05 +0100 Subject: [PATCH] Bugfix: black_version_pin (#2121) * ping black version * change to version 22.3.0 as in pre-commit * proper version * kick --- .github/workflows/zblack.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/zblack.yml b/.github/workflows/zblack.yml index 56b86da551..4a54b98df9 100644 --- a/.github/workflows/zblack.yml +++ b/.github/workflows/zblack.yml @@ -8,4 +8,9 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - - uses: psf/black@stable # https://black.readthedocs.io/en/stable/integrations/github_actions.html + # This version should match what you can find in .pre-commit-config.yaml + - uses: psf/black@22.3.0 # https://black.readthedocs.io/en/stable/integrations/github_actions.html + with: + options: "--check --verbose" + src: "./src" + version: "22.3.0"