Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/blog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 3
- name: Cache Conda
uses: actions/cache@v1
uses: actions/cache@v2.1.5
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-conda6-${{ hashFiles('environment.yml') }}
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
Rscript ./dependencies.R
- name: Restore Blogdown Cache
uses: actions/cache@v2
uses: actions/cache@v2.1.5
with:
path: |
./blogdown
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: "12"
- uses: actions/cache@v2
- uses: actions/cache@v2.1.5
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/[email protected]
with:
node-version: "14"
- uses: actions/cache@v2
- uses: actions/cache@v2.1.5
with:
path: ~/.npm
key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
node-version: "14"
- name: Cache Node.js modules
uses: actions/cache@v2
uses: actions/cache@v2.1.5
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}
Expand Down