Skip to content

Commit 5ae64d9

Browse files
committed
Update Linux runners to ubuntu-24.04
1 parent 8c05580 commit 5ae64d9

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
jars:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-java@v4
@@ -22,7 +22,7 @@ jobs:
2222
path: target
2323

2424
sdist:
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-24.04
2626
steps:
2727
- uses: actions/checkout@v4
2828
- uses: actions/setup-python@v5
@@ -44,14 +44,14 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
info:
47-
- { machine: 'ubuntu-20.04', python: '3.6', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
48-
- { machine: 'ubuntu-20.04', python: '3.7', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
49-
- { machine: 'ubuntu-20.04', python: '3.8', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
50-
- { machine: 'ubuntu-20.04', python: '3.9', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
51-
- { machine: 'ubuntu-20.04', python: '3.10', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
52-
- { machine: 'ubuntu-20.04', python: '3.11', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
53-
- { machine: 'ubuntu-20.04', python: '3.12', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
54-
- { machine: 'ubuntu-20.04', python: '3.13', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
47+
- { machine: 'ubuntu-24.04', python: '3.6', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
48+
- { machine: 'ubuntu-24.04', python: '3.7', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
49+
- { machine: 'ubuntu-24.04', python: '3.8', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
50+
- { machine: 'ubuntu-24.04', python: '3.9', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
51+
- { machine: 'ubuntu-24.04', python: '3.10', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
52+
- { machine: 'ubuntu-24.04', python: '3.11', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
53+
- { machine: 'ubuntu-24.04', python: '3.12', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
54+
- { machine: 'ubuntu-24.04', python: '3.13', arch: 'amd64', cmd: '.github/env/Linux/bdist-wheel.sh' }
5555
- { machine: 'windows-2022', python: '3.6', arch: 'amd64', cmd: '.\.github\env\Windows\bdist-wheel.ps1' }
5656
- { machine: 'windows-2022', python: '3.7', arch: 'amd64', cmd: '.\.github\env\Windows\bdist-wheel.ps1' }
5757
- { machine: 'windows-2022', python: '3.8', arch: 'amd64', cmd: '.\.github\env\Windows\bdist-wheel.ps1' }
@@ -136,7 +136,7 @@ jobs:
136136
retention-days: 1
137137

138138
bdist-wheels-linux-arm64:
139-
runs-on: 'ubuntu-22.04'
139+
runs-on: 'ubuntu-24.04'
140140
steps:
141141
- uses: actions/checkout@v4
142142

@@ -162,7 +162,7 @@ jobs:
162162
retention-days: 1
163163

164164
collect-artifacts:
165-
runs-on: ubuntu-22.04
165+
runs-on: ubuntu-24.04
166166
needs: ['sdist', 'bdist-wheel', 'bdist-wheel-universal2-hack', 'bdist-wheels-linux-arm64']
167167
steps:
168168
- uses: actions/checkout@v4
@@ -178,7 +178,7 @@ jobs:
178178

179179
release-artifacts:
180180
if: ${{ startsWith(github.ref, 'refs/heads/release/v') }}
181-
runs-on: ubuntu-22.04
181+
runs-on: ubuntu-24.04
182182
needs: ['collect-artifacts']
183183
steps:
184184
- uses: actions/download-artifact@v4
@@ -193,7 +193,7 @@ jobs:
193193

194194
publish-jar:
195195
if: ${{ startsWith(github.ref, 'refs/heads/release/v') }}
196-
runs-on: ubuntu-22.04
196+
runs-on: ubuntu-24.04
197197
steps:
198198
- uses: actions/checkout@v4
199199
- uses: actions/setup-java@v4

.github/workflows/check.yml

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

99
jobs:
1010
test:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
strategy:
1313
matrix:
1414
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

0 commit comments

Comments
 (0)