From 30ce72d4661e140b7e0407d37d4bb7aa21ec2ab5 Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Mon, 12 Aug 2024 13:22:28 +0200 Subject: [PATCH] Make cache `key`s OS-specific .. just to be sure. --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6260c6c20..38242d4cf 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,13 +58,13 @@ jobs: uses: actions/cache@v4 with: path: $HOME/bin/bitcoind - key: bitcoind + key: bitcoind-${{ runner.os }} - name: Enable caching for electrs id: cache-electrs uses: actions/cache@v4 with: path: $HOME/bin/electrs - key: electrs + key: electrs-${{ runner.os }} - name: Download bitcoind/electrs and set environment variables if: "matrix.platform != 'windows-latest' && (steps.cache-bitcoind.outputs.cache-hit != 'true' || steps.cache-electrs.outputs.cache-hit != 'true')" run: |