Skip to content

Commit aef5951

Browse files
committed
ci: fix failures
1 parent f635f79 commit aef5951

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
release:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Checkout the repository
1313
uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: [ 3.7, 3.8, 3.9, '3.10', '3.11', '3.12' ]
1616
java-version: [ 8, 11, 17, 21 ]
17-
runs-on: ubuntu-latest
17+
runs-on: ${{ matrix.python-version == 3.7 && 'ubuntu-22.04' || 'ubuntu-latest' }}
1818
steps:
1919
- name: Checkout the repository
2020
uses: actions/checkout@v4
@@ -70,7 +70,7 @@ jobs:
7070

7171
readme_dev:
7272
# Test the code in "Development" in README.rst.
73-
runs-on: ubuntu-latest
73+
runs-on: ubuntu-22.04
7474
steps:
7575
- name: Checkout the repository
7676
uses: actions/checkout@v4

0 commit comments

Comments
 (0)