Skip to content

Commit c105a72

Browse files
committed
run cargo-outdated on MSRV
1 parent 6669c22 commit c105a72

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/rust.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Rust - Continuous Integration
22

3+
env:
4+
RUST_MIN_SRV: "1.65.0"
5+
36
on:
47
push:
58
branches: [ master ]
@@ -107,7 +110,9 @@ jobs:
107110
runs-on: ubuntu-latest
108111
steps:
109112
- uses: actions/checkout@v4
110-
- uses: dtolnay/rust-toolchain@stable
113+
- uses: dtolnay/rust-toolchain@master
114+
with:
115+
toolchain: ${{ env.RUST_MIN_SRV }}
111116
- name: Set up Rust cache
112117
uses: Swatinem/rust-cache@v2
113118
- name: Install `cargo-outdated`

0 commit comments

Comments
 (0)