Skip to content
This repository was archived by the owner on Feb 24, 2021. It is now read-only.
Closed
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
path: open-zwave

- name: Cache openzwave
uses: actions/cache@v2.1.2
uses: actions/cache@v2.1.3
with:
path: open-zwave
key: ${{ hashFiles('open-zwave/.git/refs/heads/master') }}
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v2.1.2
uses: actions/cache@v2.1.3
with:
path: node_modules
key: ${{ matrix['node-version'] }}-npm-${{ hashFiles('package-lock.json') }}
Expand All @@ -63,7 +63,7 @@ jobs:

- name: Cache build
id: cache-build
uses: actions/cache@v2.1.2
uses: actions/cache@v2.1.3
with:
path: dist
key: ${{ matrix['node-version'] }}-cache-build-${{ hashFiles('build/*') }}-${{ hashFiles('src/*') }}-${{ hashFiles('static/*') }}-${{ hashFiles('package-lock.json') }}
Expand Down