From 591646a21e7c5c06da7242b9d103e6c6f962227b Mon Sep 17 00:00:00 2001
From: gaerfield <gaerfield@users.noreply.github.com>
Date: Wed, 1 Jul 2020 10:30:03 +0200
Subject: [PATCH] fixes actions/cache#244

---
 examples.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/examples.md b/examples.md
index 15da4e3..230b34d 100644
--- a/examples.md
+++ b/examples.md
@@ -135,7 +135,9 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
 ```yaml
 - uses: actions/cache@v2
   with:
-    path: ~/.gradle/caches
+    path: |
+      ~/.gradle/caches
+      ~/.gradle/wrapper
     key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
     restore-keys: |
       ${{ runner.os }}-gradle-