Skip to content

Commit

Permalink
Try to explicitely set Ubuntu version
Browse files Browse the repository at this point in the history
Ubuntu-latest is slowly pointing to 24.04
  • Loading branch information
cljoly committed Dec 25, 2024
1 parent f0582aa commit 2581a31
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
check:
name: Check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -26,7 +26,7 @@ jobs:

test_no_features:
name: Test no features
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -41,7 +41,7 @@ jobs:

test_all_features:
name: Test all features
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -56,7 +56,7 @@ jobs:

test_async_tokio_rusqlite:
name: Test feature alpha-async-tokio-rusqlite
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -71,7 +71,7 @@ jobs:

test_from_directory:
name: Test feature from-directory
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -86,7 +86,7 @@ jobs:

test_examples:
name: Test examples
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ./examples
Expand All @@ -104,7 +104,7 @@ jobs:

min_rust_version:
name: Check with minimal Rust version
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -119,7 +119,7 @@ jobs:

doc:
name: Documentation
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -130,7 +130,7 @@ jobs:

fmt:
name: Rustfmt
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -146,7 +146,7 @@ jobs:

mutation-tests:
name: Mutation tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
shard: [0, 1, 2, 3]
Expand All @@ -172,7 +172,7 @@ jobs:

clippy_all:
name: Clippy (all code)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -189,7 +189,7 @@ jobs:

clippy_main:
name: Clippy (main package)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -207,7 +207,7 @@ jobs:

coverage:
name: Code coverage
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit 2581a31

Please sign in to comment.