Skip to content

Commit 043c30c

Browse files
committed
ci: use Ubuntu 24.04
Because it is the year 2026 now.
1 parent a77fea5 commit 043c30c

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/anaconda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- '3.11'
2020
- '3.12'
2121
- '3.13'
22-
runs-on: 'ubuntu-22.04'
22+
runs-on: 'ubuntu-24.04'
2323
env:
2424
# Enable fuzzing tests, other expensive tests.
2525
ZSTD_SLOW_TESTS: '1'

.github/workflows/external-zstd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
permissions: { }
1212
jobs:
1313
linux:
14-
runs-on: 'ubuntu-22.04'
14+
runs-on: 'ubuntu-24.04'
1515
env:
1616
# Make all compile warnings fatal.
1717
ZSTD_WARNINGS_AS_ERRORS: '1'

.github/workflows/pypy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os:
18-
- 'ubuntu-22.04'
18+
- 'ubuntu-24.04'
1919
- 'macos-26'
2020
- 'windows-2022'
2121
py:
@@ -25,7 +25,7 @@ jobs:
2525
- 'x86'
2626
- 'x64'
2727
exclude:
28-
- os: 'ubuntu-22.04'
28+
- os: 'ubuntu-24.04'
2929
arch: 'x86'
3030
- os: 'macos-26'
3131
arch: 'x86'
@@ -58,7 +58,7 @@ jobs:
5858
fail-fast: false
5959
matrix:
6060
os:
61-
- 'ubuntu-22.04'
61+
- 'ubuntu-24.04'
6262
- 'macos-26'
6363
- 'windows-2022'
6464
py:
@@ -68,7 +68,7 @@ jobs:
6868
- 'x86'
6969
- 'x64'
7070
exclude:
71-
- os: 'ubuntu-22.04'
71+
- os: 'ubuntu-24.04'
7272
arch: 'x86'
7373
- os: 'macos-26'
7474
arch: 'x86'

.github/workflows/sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
permissions: { }
1212
jobs:
1313
sdist:
14-
runs-on: 'ubuntu-22.04'
14+
runs-on: 'ubuntu-24.04'
1515
steps:
1616
- name: Set up Python
1717
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os:
18-
- 'ubuntu-22.04'
19-
- 'ubuntu-22.04-arm'
18+
- 'ubuntu-24.04'
19+
- 'ubuntu-24.04-arm'
2020
- 'macos-26'
2121
- 'macos-26-intel'
2222
- 'windows-2022'
@@ -34,13 +34,13 @@ jobs:
3434
- 'x86'
3535
- 'x64'
3636
exclude:
37-
- os: 'ubuntu-22.04'
37+
- os: 'ubuntu-24.04'
3838
arch: 'arm64'
39-
- os: 'ubuntu-22.04'
39+
- os: 'ubuntu-24.04'
4040
arch: 'x86'
41-
- os: 'ubuntu-22.04-arm'
41+
- os: 'ubuntu-24.04-arm'
4242
arch: 'x86'
43-
- os: 'ubuntu-22.04-arm'
43+
- os: 'ubuntu-24.04-arm'
4444
arch: 'x64'
4545
- os: 'macos-26-intel'
4646
arch: 'arm64'

.github/workflows/wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
image: 'musllinux_1_1'
7272
- py: 'cp314t'
7373
image: 'musllinux_1_1'
74-
runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-22.04-arm' || 'ubuntu-22.04' }}
74+
runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
7575
env:
7676
CIBW_ARCHS: ${{ matrix.arch }}
7777
CIBW_BUILD: ${{ matrix.py }}-${{ matrix.abi }}_${{ matrix.arch }}

0 commit comments

Comments
 (0)