We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffa4f8 commit e13ba40Copy full SHA for e13ba40
.github/workflows/build_docs.yaml
@@ -31,10 +31,18 @@ jobs:
31
id: pip-cache
32
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
33
34
- - name: Cache dependencies
35
- uses: actions/cache@v3
+# - name: Cache dependencies
+# uses: actions/cache@v3
36
+# with:
37
+# path: ${{ steps.pip-cache.outputs.dir }}
38
+# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
39
+# restore-keys: |
40
+# ${{ runner.os }}-pip-
41
+
42
+ - name: Cache pip dependencies
43
+ uses: actions/cache@v2
44
with:
- path: ${{ steps.pip-cache.outputs.dir }}
45
+ path: ~/.cache/pip
46
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
47
restore-keys: |
48
${{ runner.os }}-pip-
0 commit comments