File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 47
47
uses : actions/cache@v3
48
48
id : cache
49
49
with :
50
- path : node_modules
51
50
key : ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
51
+ path : node_modules
52
52
53
53
- name : Set up Node.js dependencies
54
54
if : steps.cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -44,12 +44,21 @@ jobs:
44
44
with :
45
45
python-version : ${{ env.PYTHON_VERSION }}
46
46
47
+ - name : Set up build cache
48
+ uses : actions/cache@v3
49
+ id : cache
50
+ with :
51
+ key : ${{ runner.os }}-${{ hashFiles('.cache/**', 'authors.json') }}
52
+ path : |
53
+ .cache
54
+ authors.json
55
+
47
56
- name : Install Python dependencies
48
57
run : |
49
58
pip install .
50
59
pip install \
51
60
"mkdocs-git-committers-plugin-2>=0.4" \
52
- "mkdocs-git-revision-date-plugin>=0.3 " \
61
+ "mkdocs-git-revision-date-localized- plugin>=1.0 " \
53
62
"mkdocs-minify-plugin>=0.3" \
54
63
"mkdocs-redirects>=1.0"
55
64
You can’t perform that action at this time.
0 commit comments