2020 runs-on : ubuntu-latest
2121
2222 steps :
23- - uses : actions/checkout@v5
23+ - uses : actions/checkout@v6
2424 - uses : actions/setup-python@v6
2525 with :
2626 python-version : ' 3.11'
4444 continue-on-error : ${{ matrix.python-version == '3.15-dev' }}
4545
4646 steps :
47- - uses : actions/checkout@v5
47+ - uses : actions/checkout@v6
4848
4949 - name : Set up Python ${{ matrix.python-version }}
5050 uses : actions/setup-python@v6
6262 coverage :
6363 runs-on : ubuntu-latest
6464 steps :
65- - uses : actions/checkout@v5
65+ - uses : actions/checkout@v6
6666 - uses : actions/setup-python@v6
6767 with :
6868 python-version : ' 3.x'
8989 os : [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-latest]
9090
9191 steps :
92- - uses : actions/checkout@v5
92+ - uses : actions/checkout@v6
9393
9494 - uses : actions/setup-python@v6
9595 with :
@@ -101,12 +101,12 @@ jobs:
101101 python scripts/use_setuptools.py
102102
103103 - name : Build wheels
104- uses : pypa/cibuildwheel@v3.2.0
104+ uses : pypa/cibuildwheel@v3.3.1
105105 env :
106106 CIBW_ARCHS_MACOS : x86_64 arm64
107107 TOMLI_USE_MYPYC : ' 1'
108108
109- - uses : actions/upload-artifact@v4
109+ - uses : actions/upload-artifact@v6
110110 with :
111111 name : artifact-binary-${{ matrix.os }}
112112 path : wheelhouse/*.whl
@@ -117,15 +117,15 @@ jobs:
117117 runs-on : ubuntu-latest
118118
119119 steps :
120- - uses : actions/checkout@v5
120+ - uses : actions/checkout@v6
121121
122122 - name : Install build dependencies
123123 run : pip install build
124124
125125 - name : Build
126126 run : python -m build
127127
128- - uses : actions/upload-artifact@v4
128+ - uses : actions/upload-artifact@v6
129129 with :
130130 name : artifact-pure-python
131131 path : dist/*
@@ -148,7 +148,7 @@ jobs:
148148 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
149149 runs-on : ubuntu-latest
150150 steps :
151- - uses : actions/download-artifact@v5
151+ - uses : actions/download-artifact@v7
152152 with :
153153 path : dist
154154 pattern : artifact-*
0 commit comments