Skip to content

Commit ae7a40f

Browse files
authored
Merge pull request #3859 from didx-xyz/fix/ruff
♻️ Sync ruff version
2 parents 83f280c + b94f33e commit ae7a40f

4 files changed

Lines changed: 513 additions & 500 deletions

File tree

.github/workflows/format.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,13 @@ jobs:
1919
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2020
with:
2121
python-version: "3.12"
22-
- name: Ruff Format and Lint Check
22+
- name: Ruff Format Check
2323
uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0
2424
with:
25-
version: 0.11.4
25+
version: 0.12.10
2626
args: "format --check"
27+
- name: Ruff Lint Check
28+
uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0
29+
with:
30+
version: 0.12.10
31+
args: "check"

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
repos:
22
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
3-
rev: v9.18.0
3+
rev: v9.22.0
44
hooks:
55
- id: commitlint
66
stages: [commit-msg]
77
args: ["--config", ".commitlint.config.js"]
88
additional_dependencies: ['@commitlint/config-conventional']
99
- repo: https://github.com/astral-sh/ruff-pre-commit
1010
# Ensure this is synced with pyproject.toml
11-
rev: v0.11.4
11+
rev: v0.12.10
1212
hooks:
1313
# Run the linter
1414
- id: ruff

0 commit comments

Comments
 (0)