Skip to content

Commit

Permalink
Updated diff-file checker version
Browse files Browse the repository at this point in the history
  • Loading branch information
Shettland committed Jun 6, 2024
1 parent 5811e80 commit 941c530
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: pip install flake8
- name: Check for Python file changes
id: file_check
uses: tj-actions/changed-files@v33
uses: tj-actions/changed-files@v44
with:
sha: ${{ github.event.pull_request.head.sha }}
files: |
Expand All @@ -47,11 +47,10 @@ jobs:
run: pip install black[jupyter]
- name: Check for Python file changes
id: file_check
uses: tj-actions/changed-files@v34
uses: tj-actions/changed-files@v44
with:
sha: ${{ github.event.pull_request.head.sha }}
files: |
**.py
files: '**.py'
- name: Check code lints with Black
if: steps.file_check.outputs.any_changed == 'true'
uses: psf/black@stable
Expand Down
2 changes: 1 addition & 1 deletion bu_isciii/scratch.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def revert_copy_scratch(self):
except Exception as e:
stderr.print(e)
stderr.print(
"[red]ERROR: Copy of the directory %s failed"
"[red]ERROR: Copy of directory %s failed"
% self.scratch_tmp_path,
highlight=False,
)
Expand Down

0 comments on commit 941c530

Please sign in to comment.