@@ -79,8 +79,10 @@ To avoid saving a cache that already exists, the `cache-hit` output from a resto
79
79
The `cache-primary-key` output from the restore step should also be used to ensure
80
80
the cache key does not change during the build if it's calculated based on file contents.
81
81
82
+ Here's an example where we imagine we're calculating a lot of prime numbers and want to cache them :
83
+
82
84
` ` ` yaml
83
- name: Always Caching Primes
85
+ name: Always Caching Prime Numbers
84
86
85
87
on: push
86
88
@@ -91,23 +93,23 @@ jobs:
91
93
steps:
92
94
- uses: actions/checkout@v4
93
95
94
- - name: Restore cached Primes
95
- id: cache-primes -restore
96
+ - name: Restore cached Prime Numbers
97
+ id: cache-prime-numbers -restore
96
98
uses: actions/cache/restore@v4
97
99
with:
98
- key: ${{ runner.os }}-primes
100
+ key: ${{ runner.os }}-prime-numbers
99
101
path: |
100
102
path/to/dependencies
101
103
some/other/dependencies
102
104
103
105
# Intermediate workflow steps
104
106
105
- - name: Always Save Primes
106
- id: cache-primes -save
107
- if: always() && steps.cache-primes -restore.outputs.cache-hit != 'true'
107
+ - name: Always Save Prime Numbers
108
+ id: cache-prime-numbers -save
109
+ if: always() && steps.cache-prime-numbers -restore.outputs.cache-hit != 'true'
108
110
uses: actions/cache/save@v4
109
111
with:
110
- key: ${{ steps.cache-primes -restore.outputs.cache-primary-key }}
112
+ key: ${{ steps.cache-prime-numbers -restore.outputs.cache-primary-key }}
111
113
path: |
112
114
path/to/dependencies
113
115
some/other/dependencies
0 commit comments