Skip to content

Commit

Permalink
Fixing black version rather than GH Action Version
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 3, 2023
1 parent 71d1b70 commit 4657138
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 4657138

Please sign in to comment.