We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89c2aa3 commit 2b04afaCopy full SHA for 2b04afa
.github/workflows/autotest.yml
@@ -13,16 +13,14 @@ jobs:
13
runs-on: ubuntu-latest
14
15
steps:
16
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
17
18
- name: Cache node modules
19
id: cache
20
uses: actions/cache@v4
21
- env:
22
- cache-name: cache-node-modules
23
with:
24
path: '**/node_modules'
25
- key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
+ key: ${{ runner.os }}-cache-node-modules-${{ hashFiles('**/package-lock.json') }}
26
27
- name: Install dependencies
28
if: steps.cache.outputs.cache-hit != 'true'
0 commit comments