Skip to content

Commit

Permalink
Fixing black version rather than GH Action Version (#233)
Browse files Browse the repository at this point in the history
The `psf/black@22.12.0` was actually the github action version rather than the version of black. This is talked about in 
psf/black#3382

We are not pinning the version of black and using stable for the github action version.
  • Loading branch information
ankenyr committed Feb 4, 2023
1 parent 2a9bea6 commit 54d6c06
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/validate.yml
Expand Up @@ -93,7 +93,9 @@ jobs:
#----------------------------------------------
- name: Format project using Black
if: steps.paths-filter.outputs.run_format == 'true'
uses: psf/black@22.12.0
uses: psf/black@stable
with:
version: "22.12.0"
#----------------------------------------------
# run isort
#----------------------------------------------
Expand Down

0 comments on commit 54d6c06

Please sign in to comment.