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
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ See ["Caching dependencies to speed up workflows"](https://help.github.com/githu
14
14
15
15
```yaml
16
16
- name: Cache multiple paths
17
-
uses: actions/cache@v2
17
+
uses: actions/cache@v3
18
18
with:
19
19
path: |
20
20
~/cache
@@ -69,7 +69,7 @@ jobs:
69
69
70
70
- name: Cache Primes
71
71
id: cache-primes
72
-
uses: actions/cache@v2
72
+
uses: actions/cache@v3
73
73
with:
74
74
path: prime-numbers
75
75
key: ${{ runner.os }}-primes
@@ -119,7 +119,7 @@ A cache key can include any of the contexts, functions, literals, and operators
119
119
For example, using the [`hashFiles`](https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#hashfiles) function allows you to create a new cache when dependencies change.
120
120
121
121
```yaml
122
-
- uses: actions/cache@v2
122
+
- uses: actions/cache@v3
123
123
with:
124
124
path: |
125
125
path/to/dependencies
@@ -137,7 +137,7 @@ Additionally, you can use arbitrary command output in a cache key, such as a dat
Copy file name to clipboardexpand all lines: examples.md
+39-39
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@
45
45
Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/package-references-in-project-files#locking-dependencies):
@@ -54,10 +54,10 @@ Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/packa
54
54
```
55
55
56
56
Depending on the environment, huge packages might be pre-installed in the global cache folder.
57
-
With `actions/cache@v2` you can now exclude unwanted packages with [exclude pattern](https://github.com/actions/toolkit/tree/main/packages/glob#exclude-patterns)
57
+
With `actions/cache@v3` you can now exclude unwanted packages with [exclude pattern](https://github.com/actions/toolkit/tree/main/packages/glob#exclude-patterns)
58
58
59
59
```yaml
60
-
- uses: actions/cache@v2
60
+
- uses: actions/cache@v3
61
61
with:
62
62
path: |
63
63
~/.nuget/packages
@@ -74,7 +74,7 @@ Or you could move the cache folder like below.
@@ -236,7 +236,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
236
236
>Note: Ensure no Gradle daemons are running anymore when your workflow completes. Creating the cache package might fail due to locks being held by Gradle. Refer to the [Gradle Daemon documentation](https://docs.gradle.org/current/userguide/gradle_daemon.html) on how to disable or stop the Gradle Daemons.
237
237
238
238
```yaml
239
-
- uses: actions/cache@v2
239
+
- uses: actions/cache@v3
240
240
with:
241
241
path: |
242
242
~/.gradle/caches
@@ -250,7 +250,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
@@ -344,7 +344,7 @@ The yarn 2 cache directory will depend on your config. See https://yarnpkg.com/c
344
344
id: yarn-cache-dir-path
345
345
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
346
346
347
-
- uses: actions/cache@v2
347
+
- uses: actions/cache@v3
348
348
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
0 commit comments