From fdab997d1749109e128c26fb23a186cb22a08e68 Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Sun, 29 Jan 2023 14:23:56 +0000 Subject: [PATCH] chore(ci): switch testing to stable Rust --- .github/workflows/rust.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 08abe127..4c77fb41 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -15,10 +15,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install latest nightly + - name: Install latest stable uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true components: rustfmt, clippy