CI: fix deprecation warning (MR 5126)

Fixes this warning:

    warning: `ruff <path>` is deprecated. Use `ruff check <path>` instead:
This commit is contained in:
Stefan Hansson 2024-05-13 16:19:06 +02:00
parent 6a1f7a1623
commit b15ff1601c
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -11,4 +11,4 @@ fi
set -x set -x
# shellcheck disable=SC2046 # shellcheck disable=SC2046
ruff --ignore E501,F401,E722,W605 $(find .ci -name '*.py') ruff check --ignore E501,F401,E722,W605 $(find .ci -name '*.py')