From the ruff [changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md), the following is deprecated: `ruff <path>; use ruff check <path>` It seems, that this action relies on `ruff <path>`. A fix should be simple: In line https://github.com/ChartBoost/ruff-action/blob/491342200cdd1cf4d5132a30ddc546b3b5bc531b/action/main.py#L28 add `"check"` between `req` (which contains the string `"ruff"` and the version) and the path, following thereafter.
From the ruff changelog, the following is deprecated:
ruff <path>; use ruff check <path>It seems, that this action relies on
ruff <path>.A fix should be simple:
In line
ruff-action/action/main.py
Line 28 in 4913422
add
"check"betweenreq(which contains the string"ruff"and the version) and the path, following thereafter.