mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 02:14:19 +08:00 
			
		
		
		
	Update examples
This commit is contained in:
		
							parent
							
								
									1d78355196
								
							
						
					
					
						commit
						dc88ab52d7
					
				
							
								
								
									
										18
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								README.md
									
									
									
									
									
								
							| @ -95,7 +95,7 @@ jobs: | |||||||
| 
 | 
 | ||||||
|     - name: Cache Primes |     - name: Cache Primes | ||||||
|       id: cache-primes |       id: cache-primes | ||||||
|       uses: actions/cache@v3 |       uses: actions/cache@v4 | ||||||
|       with: |       with: | ||||||
|         path: prime-numbers |         path: prime-numbers | ||||||
|         key: ${{ runner.os }}-primes |         key: ${{ runner.os }}-primes | ||||||
| @ -126,7 +126,7 @@ jobs: | |||||||
| 
 | 
 | ||||||
|     - name: Restore cached Primes |     - name: Restore cached Primes | ||||||
|       id: cache-primes-restore |       id: cache-primes-restore | ||||||
|       uses: actions/cache/restore@v3 |       uses: actions/cache/restore@v4 | ||||||
|       with: |       with: | ||||||
|         path: | |         path: | | ||||||
|           path/to/dependencies |           path/to/dependencies | ||||||
| @ -137,7 +137,7 @@ jobs: | |||||||
|     . |     . | ||||||
|     - name: Save Primes |     - name: Save Primes | ||||||
|       id: cache-primes-save |       id: cache-primes-save | ||||||
|       uses: actions/cache/save@v3 |       uses: actions/cache/save@v4 | ||||||
|       with: |       with: | ||||||
|         path: | |         path: | | ||||||
|           path/to/dependencies |           path/to/dependencies | ||||||
| @ -191,7 +191,7 @@ A cache key can include any of the contexts, functions, literals, and operators | |||||||
| For example, using the [`hashFiles`](https://docs.github.com/en/actions/learn-github-actions/expressions#hashfiles) function allows you to create a new cache when dependencies change. | For example, using the [`hashFiles`](https://docs.github.com/en/actions/learn-github-actions/expressions#hashfiles) function allows you to create a new cache when dependencies change. | ||||||
| 
 | 
 | ||||||
| ```yaml | ```yaml | ||||||
|   - uses: actions/cache@v3 |   - uses: actions/cache@v4 | ||||||
|     with: |     with: | ||||||
|       path: | |       path: | | ||||||
|         path/to/dependencies |         path/to/dependencies | ||||||
| @ -209,7 +209,7 @@ Additionally, you can use arbitrary command output in a cache key, such as a dat | |||||||
|       echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT |       echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT | ||||||
|     shell: bash |     shell: bash | ||||||
| 
 | 
 | ||||||
|   - uses: actions/cache@v3 |   - uses: actions/cache@v4 | ||||||
|     with: |     with: | ||||||
|       path: path/to/dependencies |       path: path/to/dependencies | ||||||
|       key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/lockfiles') }} |       key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/lockfiles') }} | ||||||
| @ -231,7 +231,7 @@ Example: | |||||||
| steps: | steps: | ||||||
|   - uses: actions/checkout@v3 |   - uses: actions/checkout@v3 | ||||||
| 
 | 
 | ||||||
|   - uses: actions/cache@v3 |   - uses: actions/cache@v4 | ||||||
|     id: cache |     id: cache | ||||||
|     with: |     with: | ||||||
|       path: path/to/dependencies |       path: path/to/dependencies | ||||||
| @ -263,7 +263,7 @@ jobs: | |||||||
| 
 | 
 | ||||||
|       - name: Cache Primes |       - name: Cache Primes | ||||||
|         id: cache-primes |         id: cache-primes | ||||||
|         uses: actions/cache@v3 |         uses: actions/cache@v4 | ||||||
|         with: |         with: | ||||||
|           path: prime-numbers |           path: prime-numbers | ||||||
|           key: primes |           key: primes | ||||||
| @ -274,7 +274,7 @@ jobs: | |||||||
| 
 | 
 | ||||||
|       - name: Cache Numbers |       - name: Cache Numbers | ||||||
|         id: cache-numbers |         id: cache-numbers | ||||||
|         uses: actions/cache@v3 |         uses: actions/cache@v4 | ||||||
|         with: |         with: | ||||||
|           path: numbers |           path: numbers | ||||||
|           key: primes |           key: primes | ||||||
| @ -290,7 +290,7 @@ jobs: | |||||||
| 
 | 
 | ||||||
|       - name: Cache Primes |       - name: Cache Primes | ||||||
|         id: cache-primes |         id: cache-primes | ||||||
|         uses: actions/cache@v3 |         uses: actions/cache@v4 | ||||||
|         with: |         with: | ||||||
|           path: prime-numbers |           path: prime-numbers | ||||||
|           key: primes |           key: primes | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Yang Cao
						Yang Cao