Skip to content

Commit 6c6a390

Browse files
authored
Merge pull request #1032 from mulkieran/rust-1.95.0
github actions: Update recommended Rust to 1.95.0
2 parents 59dda65 + bc2c57f commit 6c6a390

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/cargo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- uses: dtolnay/rust-toolchain@master
4343
with:
4444
components: cargo
45-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
45+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
4646
- name: Check out ci repo
4747
uses: actions/checkout@v6
4848
with:

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ jobs:
2424
matrix:
2525
include:
2626
- components: rustfmt
27-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
27+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
2828
task: make -f Makefile fmt-ci
2929
- components: clippy
30-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
30+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
3131
task: make -f Makefile clippy
3232
- components: cargo
33-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
33+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
3434
task: make -f Makefile build
3535
- components: cargo
36-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
36+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
3737
task: make -f Makefile docs
3838
- components: cargo
39-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
39+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
4040
task: make -f Makefile check-typos
4141
runs-on: ubuntu-22.04
4242
steps:
@@ -62,7 +62,7 @@ jobs:
6262
matrix:
6363
include:
6464
- toolchain: 1.85.0 # LOWEST SUPPORTED RUST TOOLCHAIN
65-
- toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
65+
- toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
6666
runs-on: ubuntu-22.04
6767
steps:
6868
- uses: actions/checkout@v6

.github/workflows/nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
include:
1818
- components: cargo
19-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
19+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
2020
task: make -f Makefile audit
2121
# Allowed because a failure may occur after a new Rust stable
2222
# version is released.
@@ -65,7 +65,7 @@ jobs:
6565
- uses: dtolnay/rust-toolchain@master
6666
with:
6767
components: cargo
68-
toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
68+
toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
6969
- name: Check out ci repo
7070
uses: actions/checkout@v6
7171
with:
@@ -99,10 +99,10 @@ jobs:
9999
uses: obi1kenobi/cargo-semver-checks-action@v2
100100
with:
101101
verbose: true
102-
rust-toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
102+
rust-toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
103103
manifest-path: devicemapper-rs-sys
104104
- name: Do semantic version checks
105105
uses: obi1kenobi/cargo-semver-checks-action@v2
106106
with:
107107
verbose: true
108-
rust-toolchain: 1.94.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
108+
rust-toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN

0 commit comments

Comments
 (0)