diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a16ecf2..181947b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: RUSTFLAGS: ${{matrix.rustflags}} ${{env.RUSTFLAGS}} msrv: - name: Rust 1.70.0 + name: Rust MSRV needs: pre_ci if: needs.pre_ci.outputs.continue runs-on: ubuntu-latest @@ -55,7 +55,9 @@ jobs: run: | sudo apt-get update sudo apt-get install -y webkit2gtk-4.0 libgtk-3-dev - - uses: dtolnay/rust-toolchain@1.70.0 + - uses: dtolnay/rust-toolchain@stable + with: + toolchain: 1.70.0 # MSRV - uses: Swatinem/rust-cache@v2 - run: cargo check --workspace --tests diff --git a/Cargo.toml b/Cargo.toml index 7d20be8..5531ca6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "tauri-bindgen" authors.workspace = true version.workspace = true edition.workspace = true -rust-version.workspace = true +rust-version.workspace = true # MSRV [workspace] members = ["crates/*"]