Skip to content

Commit b6e9a91

Browse files
author
Ashwin Sangem
authored
Revert "Updated to the latest version."
This reverts commit c842503.
1 parent c842503 commit b6e9a91

File tree

3 files changed

+45
-45
lines changed

3 files changed

+45
-45
lines changed

.github/workflows/workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
echo "::set-output name=dir::$(npm config get cache)"
3636
- name: Restore npm cache
37-
uses: actions/cache@v3
37+
uses: actions/cache@v2
3838
with:
3939
path: ${{ steps.npm-cache.outputs.dir }}
4040
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See ["Caching dependencies to speed up workflows"](https://help.github.com/githu
1414

1515
```yaml
1616
- name: Cache multiple paths
17-
uses: actions/cache@v3
17+
uses: actions/cache@v2
1818
with:
1919
path: |
2020
~/cache
@@ -69,7 +69,7 @@ jobs:
6969
7070
- name: Cache Primes
7171
id: cache-primes
72-
uses: actions/cache@v3
72+
uses: actions/cache@v2
7373
with:
7474
path: prime-numbers
7575
key: ${{ runner.os }}-primes
@@ -119,7 +119,7 @@ A cache key can include any of the contexts, functions, literals, and operators
119119
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.
120120

121121
```yaml
122-
- uses: actions/cache@v3
122+
- uses: actions/cache@v2
123123
with:
124124
path: |
125125
path/to/dependencies
@@ -137,7 +137,7 @@ Additionally, you can use arbitrary command output in a cache key, such as a dat
137137
echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")"
138138
shell: bash
139139
140-
- uses: actions/cache@v3
140+
- uses: actions/cache@v2
141141
with:
142142
path: path/to/dependencies
143143
key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/lockfiles') }}
@@ -158,7 +158,7 @@ Example:
158158
steps:
159159
- uses: actions/checkout@v2
160160
161-
- uses: actions/cache@v3
161+
- uses: actions/cache@v2
162162
id: cache
163163
with:
164164
path: path/to/dependencies

examples.md

+39-39
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/package-references-in-project-files#locking-dependencies):
4646

4747
```yaml
48-
- uses: actions/cache@v3
48+
- uses: actions/cache@v2
4949
with:
5050
path: ~/.nuget/packages
5151
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -54,10 +54,10 @@ Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/packa
5454
```
5555
5656
Depending on the environment, huge packages might be pre-installed in the global cache folder.
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)
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)
5858

5959
```yaml
60-
- uses: actions/cache@v3
60+
- uses: actions/cache@v2
6161
with:
6262
path: |
6363
~/.nuget/packages
@@ -74,7 +74,7 @@ Or you could move the cache folder like below.
7474
env:
7575
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
7676
steps:
77-
- uses: actions/cache@v3
77+
- uses: actions/cache@v2
7878
with:
7979
path: ${{ github.workspace }}/.nuget/packages
8080
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -87,7 +87,7 @@ steps:
8787
### POSIX
8888

8989
```yaml
90-
- uses: actions/cache@v3
90+
- uses: actions/cache@v2
9191
with:
9292
path: ~/.dub
9393
key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.json') }}
@@ -98,7 +98,7 @@ steps:
9898
### Windows
9999

100100
```yaml
101-
- uses: actions/cache@v3
101+
- uses: actions/cache@v2
102102
with:
103103
path: ~\AppData\Local\dub
104104
key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.json') }}
@@ -111,7 +111,7 @@ steps:
111111
### Linux
112112

113113
```yaml
114-
- uses: actions/cache@v3
114+
- uses: actions/cache@v2
115115
with:
116116
path: |
117117
~/.deno
@@ -122,7 +122,7 @@ steps:
122122
### macOS
123123

124124
```yaml
125-
- uses: actions/cache@v3
125+
- uses: actions/cache@v2
126126
with:
127127
path: |
128128
~/.deno
@@ -133,7 +133,7 @@ steps:
133133
### Windows
134134

135135
```yaml
136-
- uses: actions/cache@v3
136+
- uses: actions/cache@v2
137137
with:
138138
path: |
139139
~\.deno
@@ -145,7 +145,7 @@ steps:
145145
## Elixir - Mix
146146

147147
```yaml
148-
- uses: actions/cache@v3
148+
- uses: actions/cache@v2
149149
with:
150150
path: |
151151
deps
@@ -160,7 +160,7 @@ steps:
160160
### Linux
161161

162162
```yaml
163-
- uses: actions/cache@v3
163+
- uses: actions/cache@v2
164164
with:
165165
path: |
166166
~/.cache/go-build
@@ -173,7 +173,7 @@ steps:
173173
### macOS
174174

175175
```yaml
176-
- uses: actions/cache@v3
176+
- uses: actions/cache@v2
177177
with:
178178
path: |
179179
~/Library/Caches/go-build
@@ -186,7 +186,7 @@ steps:
186186
### Windows
187187

188188
```yaml
189-
- uses: actions/cache@v3
189+
- uses: actions/cache@v2
190190
with:
191191
path: |
192192
~\AppData\Local\go-build
@@ -202,7 +202,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
202202

203203
```yaml
204204
- name: Cache ~/.cabal/packages, ~/.cabal/store and dist-newstyle
205-
uses: actions/cache@v3
205+
uses: actions/cache@v2
206206
with:
207207
path: |
208208
~/.cabal/packages
@@ -215,14 +215,14 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
215215
## Haskell - Stack
216216

217217
```yaml
218-
- uses: actions/cache@v3
218+
- uses: actions/cache@v2
219219
name: Cache ~/.stack
220220
with:
221221
path: ~/.stack
222222
key: ${{ runner.os }}-stack-global-${{ hashFiles('stack.yaml') }}-${{ hashFiles('package.yaml') }}
223223
restore-keys: |
224224
${{ runner.os }}-stack-global-
225-
- uses: actions/cache@v3
225+
- uses: actions/cache@v2
226226
name: Cache .stack-work
227227
with:
228228
path: .stack-work
@@ -236,7 +236,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
236236
>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.
237237

238238
```yaml
239-
- uses: actions/cache@v3
239+
- uses: actions/cache@v2
240240
with:
241241
path: |
242242
~/.gradle/caches
@@ -250,7 +250,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
250250

251251
```yaml
252252
- name: Cache local Maven repository
253-
uses: actions/cache@v3
253+
uses: actions/cache@v2
254254
with:
255255
path: ~/.m2/repository
256256
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -269,7 +269,7 @@ If using `npm config` to retrieve the cache directory, ensure you run [actions/s
269269
### macOS and Ubuntu
270270

271271
```yaml
272-
- uses: actions/cache@v3
272+
- uses: actions/cache@v2
273273
with:
274274
path: ~/.npm
275275
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -284,7 +284,7 @@ If using `npm config` to retrieve the cache directory, ensure you run [actions/s
284284
id: npm-cache
285285
run: |
286286
echo "::set-output name=dir::$(npm config get cache)"
287-
- uses: actions/cache@v3
287+
- uses: actions/cache@v2
288288
with:
289289
path: ${{ steps.npm-cache.outputs.dir }}
290290
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -299,7 +299,7 @@ If using `npm config` to retrieve the cache directory, ensure you run [actions/s
299299
id: npm-cache-dir
300300
run: |
301301
echo "::set-output name=dir::$(npm config get cache)"
302-
- uses: actions/cache@v3
302+
- uses: actions/cache@v2
303303
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
304304
with:
305305
path: ${{ steps.npm-cache-dir.outputs.dir }}
@@ -312,7 +312,7 @@ If using `npm config` to retrieve the cache directory, ensure you run [actions/s
312312
313313
```yaml
314314
- name: restore lerna
315-
uses: actions/cache@v3
315+
uses: actions/cache@v2
316316
with:
317317
path: **/node_modules
318318
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
@@ -326,7 +326,7 @@ The yarn cache directory will depend on your operating system and version of `ya
326326
id: yarn-cache-dir-path
327327
run: echo "::set-output name=dir::$(yarn cache dir)"
328328
329-
- uses: actions/cache@v3
329+
- uses: actions/cache@v2
330330
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
331331
with:
332332
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -344,7 +344,7 @@ The yarn 2 cache directory will depend on your config. See https://yarnpkg.com/c
344344
id: yarn-cache-dir-path
345345
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
346346

347-
- uses: actions/cache@v3
347+
- uses: actions/cache@v2
348348
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
349349
with:
350350
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -359,7 +359,7 @@ Esy allows you to export built dependencies and import pre-built dependencies.
359359
```yaml
360360
- name: Restore Cache
361361
id: restore-cache
362-
uses: actions/cache@v3
362+
uses: actions/cache@v2
363363
with:
364364
path: _export
365365
key: ${{ runner.os }}-esy-${{ hashFiles('esy.lock/index.json') }}
@@ -388,7 +388,7 @@ Esy allows you to export built dependencies and import pre-built dependencies.
388388
id: composer-cache
389389
run: |
390390
echo "::set-output name=dir::$(composer config cache-files-dir)"
391-
- uses: actions/cache@v3
391+
- uses: actions/cache@v2
392392
with:
393393
path: ${{ steps.composer-cache.outputs.dir }}
394394
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -409,7 +409,7 @@ Locations:
409409
### Simple example
410410

411411
```yaml
412-
- uses: actions/cache@v3
412+
- uses: actions/cache@v2
413413
with:
414414
path: ~/.cache/pip
415415
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -422,23 +422,23 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu.
422422
### Multiple OS's in a workflow
423423

424424
```yaml
425-
- uses: actions/cache@v3
425+
- uses: actions/cache@v2
426426
if: startsWith(runner.os, 'Linux')
427427
with:
428428
path: ~/.cache/pip
429429
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
430430
restore-keys: |
431431
${{ runner.os }}-pip-
432432
433-
- uses: actions/cache@v3
433+
- uses: actions/cache@v2
434434
if: startsWith(runner.os, 'macOS')
435435
with:
436436
path: ~/Library/Caches/pip
437437
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
438438
restore-keys: |
439439
${{ runner.os }}-pip-
440440
441-
- uses: actions/cache@v3
441+
- uses: actions/cache@v2
442442
if: startsWith(runner.os, 'Windows')
443443
with:
444444
path: ~\AppData\Local\pip\Cache
@@ -464,7 +464,7 @@ jobs:
464464
- os: windows-latest
465465
path: ~\AppData\Local\pip\Cache
466466
steps:
467-
- uses: actions/cache@v3
467+
- uses: actions/cache@v2
468468
with:
469469
path: ${{ matrix.path }}
470470
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -482,7 +482,7 @@ jobs:
482482
echo "::set-output name=dir::$(pip cache dir)"
483483
484484
- name: pip cache
485-
uses: actions/cache@v3
485+
uses: actions/cache@v2
486486
with:
487487
path: ${{ steps.pip-cache.outputs.dir }}
488488
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -500,7 +500,7 @@ jobs:
500500
501501
502502
503-
- uses: actions/cache@v3
503+
- uses: actions/cache@v2
504504
with:
505505
path: ~/.local/share/virtualenvs
506506
key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}
@@ -527,7 +527,7 @@ For renv, the cache directory will vary by OS. The `RENV_PATHS_ROOT` environment
527527
cat("##[set-output name=r-version;]", R.Version()$version.string, sep = "")
528528
shell: Rscript {0}
529529
- name: Restore Renv package cache
530-
uses: actions/cache@v3
530+
uses: actions/cache@v2
531531
with:
532532
path: ${{ env.RENV_PATHS_ROOT }}
533533
key: ${{ steps.get-version.outputs.os-version }}-${{ steps.get-version.outputs.r-version }}-${{ inputs.cache-version }}-${{ hashFiles('renv.lock') }}
@@ -553,7 +553,7 @@ whenever possible:
553553
## Rust - Cargo
554554

555555
```yaml
556-
- uses: actions/cache@v3
556+
- uses: actions/cache@v2
557557
with:
558558
path: |
559559
~/.cargo/bin/
@@ -568,7 +568,7 @@ whenever possible:
568568

569569
```yaml
570570
- name: Cache SBT
571-
uses: actions/cache@v3
571+
uses: actions/cache@v2
572572
with:
573573
path: |
574574
~/.ivy2/cache
@@ -579,7 +579,7 @@ whenever possible:
579579
## Swift, Objective-C - Carthage
580580

581581
```yaml
582-
- uses: actions/cache@v3
582+
- uses: actions/cache@v2
583583
with:
584584
path: Carthage
585585
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
@@ -590,7 +590,7 @@ whenever possible:
590590
## Swift, Objective-C - CocoaPods
591591

592592
```yaml
593-
- uses: actions/cache@v3
593+
- uses: actions/cache@v2
594594
with:
595595
path: Pods
596596
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
@@ -601,7 +601,7 @@ whenever possible:
601601
## Swift - Swift Package Manager
602602

603603
```yaml
604-
- uses: actions/cache@v3
604+
- uses: actions/cache@v2
605605
with:
606606
path: .build
607607
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}

0 commit comments

Comments
 (0)