From 12c29d99a5dbe20e78d4e5049c21b4f770003c26 Mon Sep 17 00:00:00 2001 From: Wojtek Mach Date: Sun, 18 Apr 2021 21:24:39 +0200 Subject: [PATCH] Update cache key for Elixir --- examples.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples.md b/examples.md index 0947e70..cf3be81 100644 --- a/examples.md +++ b/examples.md @@ -97,13 +97,14 @@ steps: ``` ## Elixir - Mix + ```yaml - uses: actions/cache@v2 with: path: | deps _build - key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} + key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock')) }} restore-keys: | ${{ runner.os }}-mix- ```