@@ -2,22 +2,22 @@ name: Python Tests
22
33on :
44 push :
5- branches : master
5+ branches : [ master]
66 pull_request :
77
88jobs :
99 build :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v3
12+ - uses : actions/checkout@v4
1313 with :
1414 fetch-depth : 0
1515 - uses : actions/setup-dotnet@v1
16- - uses : astral-sh/setup-uv@v4
16+ - uses : astral-sh/setup-uv@v6
1717 - name : Build
1818 run : uv build
1919 - name : Upload source distribution
20- uses : actions/upload-artifact@v3
20+ uses : actions/upload-artifact@v4
2121 with :
2222 name : build-output
2323 path : " dist/*"
@@ -26,10 +26,10 @@ jobs:
2626 lint :
2727 runs-on : ubuntu-latest
2828 steps :
29- - uses : actions/checkout@v3
29+ - uses : actions/checkout@v4
3030 with :
3131 fetch-depths : 0
32- - uses : astral-sh/setup-uv@v4
32+ - uses : astral-sh/setup-uv@v6
3333 - name : Install Ruff
3434 run : uv tool install ruff
3535 - name : Check format
@@ -46,21 +46,21 @@ jobs:
4646 python : ['3.13', '3.12', '3.11', '3.10', '3.9', '3.8'] # pypy3
4747
4848 steps :
49- - uses : actions/checkout@v3
49+ - uses : actions/checkout@v4
5050
5151 - name : Setup .NET
5252 uses : actions/setup-dotnet@v1
5353 with :
5454 dotnet-version : ' 6.0.x'
5555
5656 - name : Set up Python ${{ matrix.python }}
57- uses : astral-sh/setup-uv@v4
57+ uses : astral-sh/setup-uv@v6
5858 with :
5959 python-version : ${{ matrix.python }}
6060
6161 - name : Cache Mono
6262 if : runner.os == 'Windows'
63- uses : actions/cache@v2
63+ uses : actions/cache@v4
6464 with :
6565 path : ${{ env.TEMP }}\chocolatey
6666 key : ${{ runner.os }}-chocolatey-${{ matrix.python == 'pypy3' && '32' || '64' }}
7676 uv pip install pytest
7777
7878 - name : Download wheel
79- uses : actions/download-artifact@v3
79+ uses : actions/download-artifact@v4
8080 with :
8181 name : build-output
8282 path : dist/
9696
9797 steps :
9898 - name : Download artifacts
99- uses : actions/download-artifact@v3
99+ uses : actions/download-artifact@v4
100100 with :
101101 name : build-output
102102 path : dist/
0 commit comments