File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ - name: Cache
2+ uses: actions/cache@v3.3.2
3+ with:
4+ # A list of files, directories, and wildcard patterns to cache and restore
5+ path:
6+ # An explicit key for restoring and saving the cache
7+ key:
8+ # An ordered list of keys to use for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case.
9+ restore-keys: # optional
10+ # The chunk size used to split up large files during upload, in bytes
11+ upload-chunk-size: # optional
12+ # An optional boolean when enabled, allows windows runners to save or restore caches that can be restored or saved respectively on other platforms
13+ enableCrossOsArchive: # optional, default is false
14+ # Fail the workflow if cache entry is not found
15+ fail-on-cache-miss: # optional, default is false
16+ # Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache
17+ lookup-only: # optional, default is false
18+
You can’t perform that action at this time.
0 commit comments