From f4a88420a4cc1081e52c35966c72a659d4d7d0b4 Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 27 Jul 2024 22:19:44 -0400 Subject: [PATCH] ci: pin rust to 1.79 this is what our nix dev shell uses and what we can compile on. it seems the time crate doesn't like v1.80 of the compiler :( --- .github/workflows/ci.yaml | 2 +- .github/workflows/clippy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a8dd76b..5a32525 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4 - name: Install Rust - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@1.79.0 with: toolchain: stable diff --git a/.github/workflows/clippy.yaml b/.github/workflows/clippy.yaml index b4f60e6..59745ce 100644 --- a/.github/workflows/clippy.yaml +++ b/.github/workflows/clippy.yaml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v4 - name: Install Rust - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@1.79.0 with: components: "clippy"