Skip to content

Commit b5fcc07

Browse files
committed
ci: Update deprecated runner images to supported versions
- ubuntu-20.04 → ubuntu-22.04 - macos-11 → macos-13 - windows-2019 → windows-2022
1 parent 8663902 commit b5fcc07

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
build-and-test:
1313
name: Testing with Python 3.${{ matrix.python_minor }} on Linux
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
strategy:
1616
matrix:
1717
python_minor: [ "6" , "7" , "8" , "9" , "10" ]
@@ -38,7 +38,7 @@ jobs:
3838
if: startsWith(github.ref, 'refs/tags')
3939
needs: build-and-test
4040
name: Source distribution
41-
runs-on: macos-11
41+
runs-on: macos-13
4242

4343
steps:
4444
- uses: actions/checkout@v4.2.2
@@ -70,7 +70,7 @@ jobs:
7070
if: startsWith(github.ref, 'refs/tags')
7171
needs: [build-and-test, sdist]
7272
name: Build macOS ${{ matrix.cibw_python }} ${{ matrix.cibw_arch }} wheels
73-
runs-on: macos-11
73+
runs-on: macos-13
7474
strategy:
7575
fail-fast: true
7676
matrix:
@@ -117,7 +117,7 @@ jobs:
117117
if: startsWith(github.ref, 'refs/tags')
118118
needs: [build-and-test, sdist]
119119
name: Build ${{ matrix.cibw_buildlinux }} ${{ matrix.cibw_arch }} wheels
120-
runs-on: ubuntu-20.04
120+
runs-on: ubuntu-22.04
121121
strategy:
122122
fail-fast: true
123123
matrix:
@@ -160,7 +160,7 @@ jobs:
160160
if: startsWith(github.ref, 'refs/tags')
161161
needs: [build-and-test, sdist]
162162
name: Build Windows wheels
163-
runs-on: windows-2019
163+
runs-on: windows-2022
164164

165165
steps:
166166
- uses: actions/checkout@v4.2.2
@@ -192,7 +192,7 @@ jobs:
192192
if: startsWith(github.ref, 'refs/tags')
193193
needs: [wheels_macos, wheels_linux, wheels_windows]
194194
name: Publish wheels
195-
runs-on: ubuntu-20.04
195+
runs-on: ubuntu-22.04
196196

197197
steps:
198198
- name: Collect sdist and wheels

0 commit comments

Comments
 (0)