Skip to content

Commit c3fd645

Browse files
committed
fix(ci): upgrade Ubuntu image to 24.04
For some reason the `cargo +beta clippy` step is failing because `libsqlite3-sys` starts requiring Glibc >= 2.39 but I don't have time to figure out why and I can't reproduce it in a clean environment.
1 parent 7a2a94e commit c3fd645

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/sqlx.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010
jobs:
1111
format:
1212
name: Format
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v4
1616
- run: rustup component add rustfmt
1717
- run: cargo fmt --all -- --check
1818

1919
check:
2020
name: Check
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
strategy:
2323
matrix:
2424
runtime: [ async-std, tokio ]
@@ -53,7 +53,7 @@ jobs:
5353
5454
check-minimal-versions:
5555
name: Check build using minimal versions
56-
runs-on: ubuntu-22.04
56+
runs-on: ubuntu-24.04
5757
steps:
5858
- uses: actions/checkout@v4
5959
- name: Setup Rust
@@ -65,7 +65,7 @@ jobs:
6565

6666
test:
6767
name: Unit Tests
68-
runs-on: ubuntu-22.04
68+
runs-on: ubuntu-24.04
6969
steps:
7070
- uses: actions/checkout@v4
7171

@@ -115,7 +115,7 @@ jobs:
115115
116116
sqlite:
117117
name: SQLite
118-
runs-on: ubuntu-22.04
118+
runs-on: ubuntu-24.04
119119
strategy:
120120
matrix:
121121
runtime: [ async-std, tokio ]
@@ -183,7 +183,7 @@ jobs:
183183
184184
postgres:
185185
name: Postgres
186-
runs-on: ubuntu-22.04
186+
runs-on: ubuntu-24.04
187187
strategy:
188188
matrix:
189189
postgres: [ 17, 13 ]
@@ -284,7 +284,7 @@ jobs:
284284

285285
mysql:
286286
name: MySQL
287-
runs-on: ubuntu-22.04
287+
runs-on: ubuntu-24.04
288288
strategy:
289289
matrix:
290290
mysql: [ 8 ]
@@ -373,7 +373,7 @@ jobs:
373373

374374
mariadb:
375375
name: MariaDB
376-
runs-on: ubuntu-22.04
376+
runs-on: ubuntu-24.04
377377
strategy:
378378
matrix:
379379
mariadb: [ verylatest, 11_4, 10_11, 10_4 ]

0 commit comments

Comments
 (0)