Skip to content

Commit 150bc25

Browse files
committed
Update actions ubuntu version
1 parent 3bce55a commit 150bc25

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/gh-pages.yml

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

1111
jobs:
1212
mdbook:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.ref }}
1616
steps:

.github/workflows/miri.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name: Miri
1212
jobs:
1313
test_miri:
1414
name: Test (Miri)
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- uses: actions/[email protected]
1818
- uses: actions-rs/[email protected]

.github/workflows/security.yaml

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

77
jobs:
88
audit:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Checkout the Repository
1212
uses: actions/[email protected]

.github/workflows/semver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: semver-checks
88
jobs:
99
semver:
1010
name: Run cargo-semver-checks
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
strategy:
1313
matrix:
1414
rust:

.github/workflows/test32bit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# image: ubuntu:20.10
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest]
16+
os: [ubuntu-24.04]
1717
rust:
1818
- stable
1919
steps:

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# image: ubuntu:20.10
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, macos-latest]
16+
os: [ubuntu-24.04, macos-latest]
1717
rust:
1818
- stable
1919
steps:
@@ -32,7 +32,7 @@ jobs:
3232
- uses: Swatinem/[email protected]
3333
- uses: taiki-e/install-action@cargo-hack
3434
- run: sudo apt-get update -y
35-
if: matrix.os == 'ubuntu-latest'
35+
if: matrix.os == 'ubuntu-24.04'
3636
- name: cargo check (powerset)
3737
run: cargo hack check --feature-powerset --no-dev-deps
3838
- name: cargo check examples (powerset)
@@ -46,7 +46,7 @@ jobs:
4646
4747
fmt:
4848
name: rust fmt
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-24.04
5050
steps:
5151
- uses: actions/[email protected]
5252
with:
@@ -61,7 +61,7 @@ jobs:
6161
6262
clippy:
6363
name: clippy!!
64-
runs-on: ubuntu-latest
64+
runs-on: ubuntu-24.04
6565
strategy:
6666
matrix:
6767
rust:
@@ -79,7 +79,7 @@ jobs:
7979

8080
msrv:
8181
name: Verify MSRV
82-
runs-on: ubuntu-latest
82+
runs-on: ubuntu-24.04
8383
strategy:
8484
matrix:
8585
rust:

.github/workflows/valgrind.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest]
14+
os: [ubuntu-24.04]
1515
rust:
1616
- 1.82.0
1717
steps:
@@ -30,9 +30,9 @@ jobs:
3030
override: true
3131
- uses: Swatinem/[email protected]
3232
- run: sudo apt-get update -y
33-
if: matrix.os == 'ubuntu-latest'
33+
if: matrix.os == 'ubuntu-24.04'
3434
- run: sudo apt-get install -y valgrind
35-
if: matrix.os == 'ubuntu-latest'
35+
if: matrix.os == 'ubuntu-24.04'
3636
- run: cargo install cargo-valgrind
3737
- name: run cargo valgrind --locked
3838
run: |

0 commit comments

Comments
 (0)