Skip to content

Commit

Permalink
Update actions ubuntu version
Browse files Browse the repository at this point in the history
  • Loading branch information
benjeffery committed Jan 6, 2025
1 parent 3bce55a commit 150bc25
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
mdbook:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/miri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name: Miri
jobs:
test_miri:
name: Test (Miri)
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: actions-rs/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
audit:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout the Repository
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: semver-checks
jobs:
semver:
name: Run cargo-semver-checks
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
rust:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test32bit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# image: ubuntu:20.10
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-24.04]
rust:
- stable
steps:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# image: ubuntu:20.10
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-24.04, macos-latest]
rust:
- stable
steps:
Expand All @@ -32,7 +32,7 @@ jobs:
- uses: Swatinem/[email protected]
- uses: taiki-e/install-action@cargo-hack
- run: sudo apt-get update -y
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-24.04'
- name: cargo check (powerset)
run: cargo hack check --feature-powerset --no-dev-deps
- name: cargo check examples (powerset)
Expand All @@ -46,7 +46,7 @@ jobs:
fmt:
name: rust fmt
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
with:
Expand All @@ -61,7 +61,7 @@ jobs:
clippy:
name: clippy!!
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
rust:
Expand All @@ -79,7 +79,7 @@ jobs:

msrv:
name: Verify MSRV
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
rust:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-24.04]
rust:
- 1.82.0
steps:
Expand All @@ -30,9 +30,9 @@ jobs:
override: true
- uses: Swatinem/[email protected]
- run: sudo apt-get update -y
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-24.04'
- run: sudo apt-get install -y valgrind
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-24.04'
- run: cargo install cargo-valgrind
- name: run cargo valgrind --locked
run: |
Expand Down

0 comments on commit 150bc25

Please sign in to comment.