Skip to content

Commit

Permalink
Use version of actions/cache with fixed arguments for zstd on Ubuntu …
Browse files Browse the repository at this point in the history
…16.04.
  • Loading branch information
richardxia committed May 21, 2020
1 parent 4e3aef7 commit 82aca4c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# multiple paths to cache. This can be changed to a normal version
# number (likely v2) once it is released. See
# https://github.com/actions/cache/pull/212
uses: actions/cache@16a133d9a70d12a51f9a8e3a3b6261b91d589d79
uses: actions/cache@9ab95382c899bf0953a0c6c1374373fc40456ffe
with:
path: |
./regression/install
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

# TODO: Use v2 once it is released. See the first occurrance of
# actions/cache in this file for more details.
- uses: actions/cache@16a133d9a70d12a51f9a8e3a3b6261b91d589d79
- uses: actions/cache@9ab95382c899bf0953a0c6c1374373fc40456ffe
with:
path: ./emulator/verilator
key: verilator-${{ hashFiles('./verilator.hash') }}-v1
Expand All @@ -105,7 +105,7 @@ jobs:
- name: Use SBT Cache
# TODO: Use v2 once it is released. See the first occurrance of
# actions/cache in this file for more details.
uses: actions/cache@16a133d9a70d12a51f9a8e3a3b6261b91d589d79
uses: actions/cache@9ab95382c899bf0953a0c6c1374373fc40456ffe
with:
path: |
~/.cache/coursier
Expand All @@ -130,7 +130,7 @@ jobs:
- name: Use riscv-tools Cache
# TODO: Use v2 once it is released. See the first occurrance of
# actions/cache in this file for more details.
uses: actions/cache@16a133d9a70d12a51f9a8e3a3b6261b91d589d79
uses: actions/cache@9ab95382c899bf0953a0c6c1374373fc40456ffe
with:
path: |
./regression/install
Expand All @@ -140,15 +140,15 @@ jobs:
- name: Use Verilator Cache
# TODO: Use v2 once it is released. See the first occurrance of
# actions/cache in this file for more details.
uses: actions/cache@16a133d9a70d12a51f9a8e3a3b6261b91d589d79
uses: actions/cache@9ab95382c899bf0953a0c6c1374373fc40456ffe
with:
path: ./emulator/verilator
key: verilator-${{ hashFiles('./verilator.hash') }}-v1

- name: Use SBT Cache
# TODO: Use v2 once it is released. See the first occurrance of
# actions/cache in this file for more details.
uses: actions/cache@16a133d9a70d12a51f9a8e3a3b6261b91d589d79
uses: actions/cache@9ab95382c899bf0953a0c6c1374373fc40456ffe
with:
path: |
~/.cache/coursier
Expand Down

0 comments on commit 82aca4c

Please sign in to comment.