File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,24 @@ jobs:
1616 runs-on : ubuntu-latest
1717 steps :
1818 - uses : actions/checkout@v4
19- - uses : eifinger/setup-uv@v1
20- - run : uvx ruff check .
19+ - name : Install a specific version of uv
20+ uses : astral-sh/setup-uv@v3
21+ with :
22+ version : " 0.4.4"
23+ enable-cache : true
24+ -
run :
uvx [email protected] check . 2125
2226 ruff-format :
2327 runs-on : ubuntu-latest
2428 steps :
2529 - uses : actions/checkout@v4
26- - name : Install the latest version of uv
27- uses : astral-sh/setup-uv@v2
30+ - name : Install a specific version of uv
31+ uses : astral-sh/setup-uv@v3
2832 with :
29- version : " latest"
33+ version : " 0.4.4"
34+ enable-cache : true
3035 enable-cache : true
31- - run : uvx ruff format . --check
36+ - run : uvx ruff@0.6.8 format . --check
3237
3338 build-image :
3439 needs : [ruff, ruff-format]
Original file line number Diff line number Diff line change 1+ required-version = " ==0.6.8"
12extend-exclude = [
23 " resources/images/commander/src/test_framework" ,
34 " resources/images/exporter/authproxy.py" ,
You can’t perform that action at this time.
0 commit comments