I used the following code in the actions of my project:
# Cache node_modules
- name: Cache dependencies
uses: actions/cache@v2
id: yarn-cache
with:
path: |
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
However, the following error occurred during execution, This makes me very confused:
Warning: getCacheEntry failed: Cache service responded with 500
I used the following code in the actions of my project:
However, the following error occurred during execution, This makes me very confused: