From 66219df92d3e602724260d8ec28adaf5d358e201 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Thu, 6 Feb 2025 22:07:19 +0100 Subject: [PATCH] Include rust version in mix cache key to prevent rustler issues --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 879a5ce96..83e1bd191 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,9 +60,9 @@ jobs: path: | deps _build - key: ${{ runner.os }}-mix-${{ env.elixir }}-${{ env.otp }}-${{ hashFiles('**/mix.lock') }} + key: ${{ runner.os }}-mix-${{ env.elixir }}-${{ env.otp }}-${ env.rust }-${{ hashFiles('**/mix.lock') }} restore-keys: | - ${{ runner.os }}-mix-${{ env.elixir }}-${{ env.otp }}- + ${{ runner.os }}-mix-${{ env.elixir }}-${{ env.otp }}-${ env.rust }- - name: Cache npm dependencies uses: actions/cache@v3 with: