|
4 | 4 | windows-2022: |
5 | 5 | runs-on: windows-2022 |
6 | 6 | steps: |
7 | | - - uses: actions/checkout@v4 |
| 7 | + - uses: actions/checkout@v5 |
8 | 8 | - name: Boost install |
9 | 9 | run: | |
10 | 10 | (New-Object System.Net.WebClient).DownloadFile("https://archives.boost.io/release/1.88.0/binaries/boost_1_88_0-msvc-14.2-64.exe", "${{ runner.temp }}\boost.exe") |
|
32 | 32 | windows-2022-with-fesapi: |
33 | 33 | runs-on: windows-2022 |
34 | 34 | steps: |
35 | | - - uses: actions/checkout@v4 |
| 35 | + - uses: actions/checkout@v5 |
36 | 36 | - name: Boost install |
37 | 37 | run: | |
38 | 38 | (New-Object System.Net.WebClient).DownloadFile("https://archives.boost.io/release/1.88.0/binaries/boost_1_88_0-msvc-14.2-64.exe", "${{ runner.temp }}\boost.exe") |
|
64 | 64 | ubuntu-22: |
65 | 65 | runs-on: ubuntu-22.04 |
66 | 66 | steps: |
67 | | - - uses: actions/checkout@v4 |
| 67 | + - uses: actions/checkout@v5 |
68 | 68 | - name: APT install |
69 | 69 | run: | |
70 | 70 | sudo apt update |
|
91 | 91 | ubuntu-22-java11: |
92 | 92 | runs-on: ubuntu-22.04 |
93 | 93 | steps: |
94 | | - - uses: actions/checkout@v4 |
95 | | - - uses: actions/setup-java@v4 |
| 94 | + - uses: actions/checkout@v5 |
| 95 | + - uses: actions/setup-java@v5 |
96 | 96 | with: |
97 | 97 | distribution: 'temurin' # See 'Supported distributions' for available options |
98 | 98 | java-version: '11' |
@@ -137,8 +137,8 @@ jobs: |
137 | 137 | CC: ${{ matrix.cc }} |
138 | 138 | CXX: ${{ matrix.cxx }} |
139 | 139 | steps: |
140 | | - - uses: actions/checkout@v4 |
141 | | - - uses: actions/setup-java@v4 |
| 140 | + - uses: actions/checkout@v5 |
| 141 | + - uses: actions/setup-java@v5 |
142 | 142 | with: |
143 | 143 | distribution: 'temurin' # See 'Supported distributions' for available options |
144 | 144 | java-version: '11' |
@@ -181,13 +181,13 @@ jobs: |
181 | 181 | name: Build wheels on windows-latest |
182 | 182 | runs-on: windows-latest |
183 | 183 | steps: |
184 | | - - uses: actions/checkout@v4 |
| 184 | + - uses: actions/checkout@v5 |
185 | 185 | - name: Stub `setup.py` check |
186 | 186 | # It will be generated during CMake run |
187 | 187 | # https://github.com/pypa/cibuildwheel/issues/1139 |
188 | 188 | run: touch python/setup.py |
189 | 189 | - name: Build wheels |
190 | | - uses: pypa/cibuildwheel@v2.21.3 |
| 190 | + uses: pypa/cibuildwheel@v3.2.1 |
191 | 191 | env: |
192 | 192 | CIBW_BUILD: cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64 |
193 | 193 | CIBW_ARCHS: auto64 |
@@ -224,13 +224,14 @@ jobs: |
224 | 224 | name: Build wheels on ubuntu-latest |
225 | 225 | runs-on: ubuntu-latest |
226 | 226 | steps: |
227 | | - - uses: actions/checkout@v4 |
| 227 | + - uses: actions/checkout@v5 |
228 | 228 | - name: Stub `setup.py` check |
229 | 229 | # It will be generated during CMake run |
230 | 230 | # https://github.com/pypa/cibuildwheel/issues/1139 |
231 | 231 | run: touch python/setup.py |
232 | 232 | - name: Build wheels |
233 | | - uses: pypa/cibuildwheel@v2.21.3 |
| 233 | + # Above cibuildwheel@v2.22.0, GNU 14 is most likely used instead of GNU 12 or 13 which makes AVRO 1.11.3 not compiling |
| 234 | + uses: pypa/cibuildwheel@v2.22.0 |
234 | 235 | env: |
235 | 236 | CIBW_BUILD: cp38-manylinux_* cp39-manylinux_* cp310-manylinux_* cp311-manylinux_* cp312-manylinux_* cp313-manylinux_* |
236 | 237 | CIBW_ARCHS: auto64 |
@@ -280,13 +281,13 @@ jobs: |
280 | 281 | name: Build wheels on macos-14 |
281 | 282 | runs-on: macos-14 |
282 | 283 | steps: |
283 | | - - uses: actions/checkout@v4 |
| 284 | + - uses: actions/checkout@v5 |
284 | 285 | - name: Stub `setup.py` check |
285 | 286 | # It will be generated during CMake run |
286 | 287 | # https://github.com/pypa/cibuildwheel/issues/1139 |
287 | 288 | run: touch python/setup.py |
288 | 289 | - name: Build wheels |
289 | | - uses: pypa/cibuildwheel@v2.21.3 |
| 290 | + uses: pypa/cibuildwheel@v3.2.1 |
290 | 291 | env: |
291 | 292 | CIBW_BUILD: cp38-macosx_* cp39-macosx_* cp310-macosx_* cp311-macosx_* cp312-macosx_* cp313-macosx_* |
292 | 293 | CIBW_ARCHS: auto64 |
|
0 commit comments