You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See ["Caching dependencies to speed up workflows"](https://help.github.com/github/automating-your-workflow-with-github-actions/caching-dependencies-to-speed-up-workflows).
10
10
11
11
## What's New
12
12
13
-
* Added support for multiple paths, [glob patterns](https://github.com/actions/toolkit/tree/main/packages/glob), and single file caches.
13
+
* Added support for multiple paths, [glob patterns](https://github.com/actions/toolkit/tree/main/packages/glob), and single file caches.
14
14
15
15
```yaml
16
16
- name: Cache multiple paths
@@ -38,7 +38,7 @@ If you are using this inside a container, a POSIX-compliant `tar` needs to be in
38
38
39
39
### Inputs
40
40
41
-
* `path` - A list of files, directories, and wildcard patterns to cache and restore. See [`@actions/glob`](https://github.com/actions/toolkit/tree/main/packages/glob) for supported patterns.
41
+
* `path` - A list of files, directories, and wildcard patterns to cache and restore. See [`@actions/glob`](https://github.com/actions/toolkit/tree/main/packages/glob) for supported patterns.
42
42
* `key` - An explicit key for restoring and saving the cache
43
43
* `restore-keys` - An ordered list of keys to use for restoring the cache if no cache hit occurred for key
44
44
@@ -49,7 +49,7 @@ If you are using this inside a container, a POSIX-compliant `tar` needs to be in
49
49
> See [Skipping steps based on cache-hit](#Skipping-steps-based-on-cache-hit) for info on using this output
50
50
51
51
### Cache scopes
52
-
The cache is scoped to the key and branch. The default branch cache is available to other branches.
52
+
The cache is scoped to the key and branch. The default branch cache is available to other branches.
53
53
54
54
See [Matching a cache key](https://help.github.com/en/actions/configuring-and-managing-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key) for more info.
55
55
@@ -88,7 +88,7 @@ Every programming language and framework has its own way of caching.
88
88
89
89
See [Examples](examples.md) for a list of `actions/cache` implementations for use with:
90
90
91
-
- [C# - Nuget](./examples.md#c---nuget)
91
+
- [C# - NuGet](./examples.md#c---nuget)
92
92
- [D - DUB](./examples.md#d---dub)
93
93
- [Deno](./examples.md#deno)
94
94
- [Elixir - Mix](./examples.md#elixir---mix)
@@ -121,9 +121,9 @@ For example, using the [`hashFiles`](https://help.github.com/en/actions/referenc
0 commit comments