From b90a46c7a5b6b9cd6993d65aa68cedbf0b556bdf Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Thu, 7 Nov 2019 20:01:22 -0500 Subject: [PATCH] Update examples.md Co-Authored-By: Eric Taylor --- examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples.md b/examples.md index 70d802d..5a5e10e 100644 --- a/examples.md +++ b/examples.md @@ -90,7 +90,7 @@ The yarn cache directory will depend on your operating system and version of `ya - uses: actions/cache@v1 with: path: ${{ steps.yarn-cache.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock')) }} + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- ```