mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 15:48:39 +08:00 
			
		
		
		
	Update tips-and-workarounds.md
This commit is contained in:
		
							parent
							
								
									dc097e3bb9
								
							
						
					
					
						commit
						619517aa29
					
				| 
						 | 
					@ -14,7 +14,7 @@ A cache today is immutable and cannot be updated. But some use cases require the
 | 
				
			||||||
          restore-keys: |
 | 
					          restore-keys: |
 | 
				
			||||||
            primes-${{ runner.os }}
 | 
					            primes-${{ runner.os }}
 | 
				
			||||||
  ```          
 | 
					  ```          
 | 
				
			||||||
  Please note that this will create a new cache on every run and hence will consume the cache [quota](#cache-limits).
 | 
					  Please note that this will create a new cache on every run and hence will consume the cache [quota](./README.md#cache-limits).
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
## Use cache across feature branches
 | 
					## Use cache across feature branches
 | 
				
			||||||
Reusing cache across feature branches is not allowed today to provide cache [isolation](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache). However if both feature branches are from the default branch, a good way to achieve this is to ensure that the default branch has a cache. This cache will then be consumable by both feature branches.
 | 
					Reusing cache across feature branches is not allowed today to provide cache [isolation](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache). However if both feature branches are from the default branch, a good way to achieve this is to ensure that the default branch has a cache. This cache will then be consumable by both feature branches.
 | 
				
			||||||
| 
						 | 
					@ -80,4 +80,4 @@ jobs:
 | 
				
			||||||
        env:
 | 
					        env:
 | 
				
			||||||
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
</details>
 | 
					</details>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user