From 38ee9e04decb735fab8f717a8c36c7beb3259548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=A9o=20Lohrer?= Date: Mon, 23 Sep 2024 09:49:37 +0200 Subject: [PATCH] ci: fix runner.os -> matrix.os --- .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 8aa3042..2047505 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -31,9 +31,9 @@ jobs: path: | ~/.cargo/registry ~/.cargo/git - key: ${{ runner.os }}-cargo-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock') }} + key: ${{ matrix.os }}-cargo-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock') }} restore-keys: | - ${{ runner.os }}-cargo-${{ matrix.rust }}- + ${{ matrix.os }}-cargo-${{ matrix.rust }}- - name: Set up Rust uses: actions-rs/toolchain@v1