Skip to content

Commit 5d95fe1

Browse files
committed
Modify workflow to pin ruff version.
1 parent 1fc5e5f commit 5d95fe1

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/workflow-lint.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4
11-
- name: Run ruff
12-
uses: astral-sh/ruff-action@v3
11+
- name: Run ruff check
12+
uses: astral-sh/ruff-action@v4
13+
with:
14+
version: "<0.16"
15+
run: ruff check
1316
- name: Run ruff format
14-
run: ruff format --check
17+
run: ruff format --check

0 commit comments

Comments
 (0)