@@ -30,14 +30,14 @@ jobs:
3030 build :
3131 runs-on : ubuntu-latest
3232 steps :
33- - uses : actions/checkout@v4
33+ - uses : actions/checkout@v5
3434 with :
3535 fetch-depth : 0
3636 - name : Install the latest version of uv
3737 uses : astral-sh/setup-uv@v6
3838 - run : uv build
3939 - run : uvx twine check dist/*
40- - uses : actions/upload-artifact@v4
40+ - uses : actions/upload-artifact@v5
4141 with :
4242 name : dist
4343 path : dist/
@@ -49,11 +49,11 @@ jobs:
4949 matrix :
5050 package : ["wheel", "sdist"]
5151 steps :
52- - uses : actions/download-artifact@v4
52+ - uses : actions/download-artifact@v6
5353 with :
5454 name : dist
5555 path : dist/
56- - uses : actions/setup-python@v5
56+ - uses : actions/setup-python@v6
5757 with :
5858 python-version : 3
5959 - name : Display Python version
@@ -100,11 +100,11 @@ jobs:
100100 DEPENDS : ${{ matrix.dependencies }}
101101
102102 steps :
103- - uses : actions/checkout@v4
103+ - uses : actions/checkout@v5
104104 - name : Install the latest version of uv
105105 uses : astral-sh/setup-uv@v6
106106 - name : Set up Python ${{ matrix.python-version }}
107- uses : actions/setup-python@v5
107+ uses : actions/setup-python@v6
108108 with :
109109 python-version : ${{ matrix.python-version }}
110110 - name : Display Python version
@@ -121,7 +121,7 @@ jobs:
121121 token : ${{ secrets.CODECOV_TOKEN }}
122122 if : ${{ always() }}
123123 - name : Upload pytest test results
124- uses : actions/upload-artifact@v4
124+ uses : actions/upload-artifact@v5
125125 with :
126126 name : pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.deb-depends }}
127127 path : test-results.xml
@@ -133,7 +133,7 @@ jobs:
133133 needs : [test, test-package]
134134 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
135135 steps :
136- - uses : actions/download-artifact@v4
136+ - uses : actions/download-artifact@v6
137137 with :
138138 name : dist
139139 path : dist/
@@ -150,7 +150,7 @@ jobs:
150150 check : ['specs', 'style']
151151
152152 steps :
153- - uses : actions/checkout@v4
153+ - uses : actions/checkout@v5
154154 - name : Install the latest version of uv
155155 uses : astral-sh/setup-uv@v6
156156 - name : Show tox config
0 commit comments