Skip to content

Commit 9e2c1ec

Browse files
committed
Fix pipeline
1 parent 98289d2 commit 9e2c1ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Setup Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: '3.9'
1919

@@ -25,8 +25,8 @@ jobs:
2525
2626
- name: Lint
2727
run: |
28-
ruff --format=github --select=E9,F63,F7,F82 --target-version=py39 .
29-
ruff --format=github --target-version=py39 .
28+
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py39 .
29+
ruff --output-format=github --target-version=py39 .
3030
3131
- name: Test
3232
run: |

0 commit comments

Comments
 (0)