We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6669c22 commit c105a72Copy full SHA for c105a72
1 file changed
.github/workflows/rust.yml
@@ -1,5 +1,8 @@
1
name: Rust - Continuous Integration
2
3
+env:
4
+ RUST_MIN_SRV: "1.65.0"
5
+
6
on:
7
push:
8
branches: [ master ]
@@ -107,7 +110,9 @@ jobs:
107
110
runs-on: ubuntu-latest
108
111
steps:
109
112
- uses: actions/checkout@v4
- - uses: dtolnay/rust-toolchain@stable
113
+ - uses: dtolnay/rust-toolchain@master
114
+ with:
115
+ toolchain: ${{ env.RUST_MIN_SRV }}
116
- name: Set up Rust cache
117
uses: Swatinem/rust-cache@v2
118
- name: Install `cargo-outdated`
0 commit comments