From f7b856fb7d43d574392d8206a9915df9ab7bdf07 Mon Sep 17 00:00:00 2001 From: Bruno Deferrari Date: Thu, 8 Feb 2024 15:44:18 -0300 Subject: [PATCH] ci: Use stable Rust on Github actions pipeline --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 15c0e0c5e..0cac0231d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,8 +18,8 @@ jobs: - name: Setup Rust run: | - rustup install nightly - rustup override set nightly + rustup install stable + rustup override set stable rustup component add clippy rustfmt # - name: Check