mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 15:48:39 +08:00 
			
		
		
		
	Drop the example based on using pip's internals (#519)
pip's documentation explicitly states to not use `import pip`: > While it is implemented in Python, and so is available from your Python code via > `import pip`, you must not use pip’s internal APIs in this way. This example is in direct contradiction with the documentation's guidance and, thus, has been removed.
This commit is contained in:
		
							parent
							
								
									4134e6de47
								
							
						
					
					
						commit
						4498c5b4d8
					
				
							
								
								
									
										17
									
								
								examples.md
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								examples.md
									
									
									
									
									
								
							| 
						 | 
					@ -389,23 +389,6 @@ jobs:
 | 
				
			||||||
      ${{ runner.os }}-pip-
 | 
					      ${{ runner.os }}-pip-
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Using a script to get cache location
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
> Note: This uses an internal pip API and may not always work
 | 
					 | 
				
			||||||
```yaml
 | 
					 | 
				
			||||||
- name: Get pip cache dir
 | 
					 | 
				
			||||||
  id: pip-cache
 | 
					 | 
				
			||||||
  run: |
 | 
					 | 
				
			||||||
    python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
- uses: actions/cache@v2
 | 
					 | 
				
			||||||
  with:
 | 
					 | 
				
			||||||
    path: ${{ steps.pip-cache.outputs.dir }}
 | 
					 | 
				
			||||||
    key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
 | 
					 | 
				
			||||||
    restore-keys: |
 | 
					 | 
				
			||||||
      ${{ runner.os }}-pip-
 | 
					 | 
				
			||||||
```
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
## Python - pipenv
 | 
					## Python - pipenv
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user