Skip to content

Commit f1e0a43

Browse files
committed
feat(github): Update event dispatcher
1 parent 5b55fe0 commit f1e0a43

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/event-dispatcher.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,22 @@ jobs:
1919
- name: Setup Hugo
2020
uses: peaceiris/actions-hugo@v2
2121
with:
22-
hugo-version: '0.108.0'
22+
hugo-version: '0.114.0'
2323
extended: true
2424

2525
- name: Setup Node
2626
uses: actions/setup-node@v1
2727
with:
2828
node-version: '16.x'
2929

30+
- name: Cache dependencies
31+
uses: actions/cache@v1
32+
with:
33+
path: ~/.npm
34+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
35+
restore-keys: |
36+
${{ runner.os }}-node-
37+
3038
- run: npm install
3139

3240
- name: Build

0 commit comments

Comments
 (0)