Update README.md · actions/cache@862fc14 (original) (raw)

Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ jobs:
80 80 run: /primes.sh -d prime-numbers
81 81 ```
82 82
83 -> Note: You must use the `cache` action in your workflow before you need to use the files that might be restored from the cache. If the provided `key` doesn't match an existing cache, a new cache is automatically created if the job completes successfully.
83 +> Note: You must use the `cache` action in your workflow before you need to use the files that might be restored from the cache. If the provided `key` matches an existing cache, a new cache is not created and if the provided `key` doesn't match an existing cache, a new cache is automatically created provided the job completes successfully.
84 84
85 85 ## Implementation Examples
86 86