mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 15:48:39 +08:00 
			
		
		
		
	Updated Readme with what's new and removed v2 info
This commit is contained in:
		
							parent
							
								
									d5956bbc3c
								
							
						
					
					
						commit
						f2ea0f25f2
					
				
							
								
								
									
										22
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								README.md
									
									
									
									
									
								
							| 
						 | 
					@ -13,27 +13,9 @@ See ["Caching dependencies to speed up workflows"](https://help.github.com/githu
 | 
				
			||||||
* Added support for caching from GHES 3.5.
 | 
					* Added support for caching from GHES 3.5.
 | 
				
			||||||
* Fixed download issue for files > 2GB during restore.
 | 
					* Fixed download issue for files > 2GB during restore.
 | 
				
			||||||
* Updated the minimum runner version support from node 12 -> node 16.
 | 
					* Updated the minimum runner version support from node 12 -> node 16.
 | 
				
			||||||
 | 
					* Fixed avoiding empty cache save when no files are available for caching.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### v2
 | 
					Refer [here](https://github.com/actions/cache/blob/v2/README.md) for previous versions
 | 
				
			||||||
* Increased the cache size limit to 10 GB.
 | 
					 | 
				
			||||||
* Added support for multiple paths, [glob patterns](https://github.com/actions/toolkit/tree/main/packages/glob), and single file caches.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
```yaml
 | 
					 | 
				
			||||||
- name: Cache multiple paths
 | 
					 | 
				
			||||||
  uses: actions/cache@v3
 | 
					 | 
				
			||||||
  with:
 | 
					 | 
				
			||||||
    path: |
 | 
					 | 
				
			||||||
      ~/cache
 | 
					 | 
				
			||||||
      !~/cache/exclude
 | 
					 | 
				
			||||||
    key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
 | 
					 | 
				
			||||||
```
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
* Increased performance and improved cache sizes using `zstd` compression for Linux and macOS runners
 | 
					 | 
				
			||||||
* Allowed caching for all events with a ref. See [events that trigger workflow](https://help.github.com/en/actions/reference/events-that-trigger-workflows) for info on which events do not have a `GITHUB_REF`
 | 
					 | 
				
			||||||
* Released the [`@actions/cache`](https://github.com/actions/toolkit/tree/main/packages/cache) npm package to allow other actions to utilize caching
 | 
					 | 
				
			||||||
* Added a best-effort cleanup step to delete the archive after extraction to reduce storage space
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Refer [here](https://github.com/actions/cache/blob/v1/README.md) for previous versions
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Usage
 | 
					## Usage
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user