From 15653343fb655ef056ccc00c3a5e7e3600009d86 Mon Sep 17 00:00:00 2001 From: ryardley Date: Thu, 22 Aug 2024 15:29:52 +1000 Subject: [PATCH] Update toolchain --- .github/workflows/rust-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index e211b359..1de73501 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -8,16 +8,16 @@ on: - main jobs: - test: + ci: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - - name: Install Rust + + - name: Install latest stable Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.81.0 + toolchain: stable override: true - name: Run tests