@@ -47,15 +47,15 @@ jobs:
4747 with :
4848 node-version-file : ' .nvmrc'
4949 - run : corepack enable
50- - uses : actions/cache@v5
50+ - uses : actions/cache@v6
5151 id : deps-cache
5252 with :
5353 path : |
5454 node_modules
5555 .yarn
5656 key : deps-${{ runner.os }}-node${{ hashFiles('.nvmrc') }}-${{ hashFiles('yarn.lock') }}
5757 restore-keys : deps-${{ runner.os }}-node${{ hashFiles('.nvmrc') }}-
58- - uses : actions/cache@v5
58+ - uses : actions/cache@v6
5959 if : steps.deps-cache.outputs.cache-hit != 'true'
6060 with :
6161 # Scope to corepack's download dir only (~/.cache/node holds the Yarn release).
7676 # broke master.) Keying this cache by yarn.lock means a bump forces a fresh save; the
7777 # `cypress install` step below downloads the resolved version into it. restore-keys lets
7878 # an unrelated lockfile change reuse the previous binary so install no-ops.
79- - uses : actions/cache@v5
79+ - uses : actions/cache@v6
8080 with :
8181 path : ~/.cache/Cypress
8282 key : cypress-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
@@ -127,7 +127,7 @@ jobs:
127127 with :
128128 node-version-file : ' .nvmrc'
129129 - run : corepack enable
130- - uses : actions/cache/restore@v5
130+ - uses : actions/cache/restore@v6
131131 with :
132132 path : |
133133 node_modules
@@ -151,7 +151,7 @@ jobs:
151151 with :
152152 node-version-file : ' .nvmrc'
153153 - run : corepack enable
154- - uses : actions/cache/restore@v5
154+ - uses : actions/cache/restore@v6
155155 with :
156156 path : |
157157 node_modules
@@ -160,7 +160,7 @@ jobs:
160160 fail-on-cache-miss : true
161161 # Restore the Cypress binary saved by the build job (same key). e2e tests (yarn e2e)
162162 # launch Cypress, which needs its binary present in ~/.cache/Cypress.
163- - uses : actions/cache/restore@v5
163+ - uses : actions/cache/restore@v6
164164 with :
165165 path : ~/.cache/Cypress
166166 key : cypress-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
@@ -202,7 +202,7 @@ jobs:
202202 node-version-file : ' .nvmrc'
203203 registry-url : ' https://registry.npmjs.org'
204204 - run : corepack enable
205- - uses : actions/cache/restore@v5
205+ - uses : actions/cache/restore@v6
206206 with :
207207 path : |
208208 node_modules
0 commit comments