mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 15:48:39 +08:00 
			
		
		
		
	Fixed Windows Golang cache paths in example
This commit is contained in:
		
							parent
							
								
									6bbe742add
								
							
						
					
					
						commit
						795a8f09a9
					
				| 
						 | 
					@ -149,8 +149,8 @@ steps:
 | 
				
			||||||
- uses: actions/cache@v2
 | 
					- uses: actions/cache@v2
 | 
				
			||||||
  with:
 | 
					  with:
 | 
				
			||||||
    path: |
 | 
					    path: |
 | 
				
			||||||
      %LocalAppData%\go-build
 | 
					      ~\AppData\Local\go-build
 | 
				
			||||||
      ~/go/pkg/mod
 | 
					      ~\go\pkg\mod
 | 
				
			||||||
    key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
 | 
					    key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
 | 
				
			||||||
    restore-keys: |
 | 
					    restore-keys: |
 | 
				
			||||||
      ${{ runner.os }}-go-
 | 
					      ${{ runner.os }}-go-
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user