[CI] replace 'hashFiles' with actions/go-hashfiles
Some checks failed
Build / Build (push) Failing after 3s
Some checks failed
Build / Build (push) Failing after 3s
This commit is contained in:
parent
d6afe8ca16
commit
3fdfde1d52
@ -18,6 +18,13 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Hash west module
|
||||||
|
uses: https://gitea.com/actions/go-hashfiles
|
||||||
|
id: hash-west
|
||||||
|
with:
|
||||||
|
patterns: |-
|
||||||
|
app/west.yml
|
||||||
|
|
||||||
- name: Cache west modules
|
- name: Cache west modules
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
env:
|
env:
|
||||||
@ -28,7 +35,7 @@ jobs:
|
|||||||
tools/
|
tools/
|
||||||
zephyr/
|
zephyr/
|
||||||
bootloader/
|
bootloader/
|
||||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }}
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ steps.hash-west.outputs.hash }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||||
${{ runner.os }}-build-
|
${{ runner.os }}-build-
|
||||||
|
Loading…
Reference in New Issue
Block a user