From aa89984d1ed595f9affd10947ececa847e3c198d Mon Sep 17 00:00:00 2001 From: Francis De Brabandere Date: Wed, 19 Jun 2024 15:57:55 +0200 Subject: [PATCH] ci: try to fix the rust version issue --- .github/workflows/rust.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 514c09a..19b596b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,6 +31,11 @@ jobs: ~/.cargo/git/db/ target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + # make sure we are on rust 1.79 + # see https://github.com/tuffy/bitstream-io/commit/241eaed73b0cd814640ceaf01b8220e5c98927d6#commitcomment-143198388 + # TODO remove this once github is on a newer version of rust + - name: Set up Rust + run: rustup update - name: Build run: cargo build --verbose - name: Run tests