Skip to content

Commit 65a7110

Browse files
committed
Upgrade OS versions in CI workflows
1 parent c94179d commit 65a7110

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build_wheels:
88
name: Build release
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010

1111
steps:
1212
- uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
2626

2727
upload_pypi:
2828
needs: build_wheels
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-22.04
3030

3131
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
3232

.github/workflows/tests_full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515

1616
if: startsWith(github.ref, 'refs/tags/v') != true
1717

@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ${{ matrix.os }}
4141
strategy:
4242
matrix:
43-
os: [ windows-2019, ubuntu-20.04, macos-13 ]
43+
os: [ windows-2022, ubuntu-22.04, macos-14 ]
4444
python-version: [ 3.7, 3.8, 3.9 ]
4545
tf-version: [2.7.0, 2.8.0, 2.9.0]
4646

@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ${{ matrix.os }}
7272
strategy:
7373
matrix:
74-
os: [ windows-2019, ubuntu-20.04, macos-13 ]
74+
os: [ windows-2022, ubuntu-22.04, macos-14 ]
7575
python-version: [ 3.7, 3.8, 3.9 ]
7676
pytorch-version: [1.8.0, 1.9.0, 1.10.0, 1.11.0, 1.12.0, 1.13.0]
7777

.github/workflows/tests_quick.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python 3.6
@@ -34,7 +34,7 @@ jobs:
3434

3535
test-tf:
3636
needs: build
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-22.04
3838

3939
steps:
4040
- uses: actions/checkout@v4
@@ -60,7 +60,7 @@ jobs:
6060

6161
test-torch:
6262
needs: build
63-
runs-on: ubuntu-20.04
63+
runs-on: ubuntu-22.04
6464

6565
steps:
6666
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)