File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 5959 run : |
6060 echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
6161
62- - uses : actions/cache@v4
62+ - uses : actions/cache@v5
6363 with :
6464 path : ${{ steps.pnpm-paths.outputs.STORE_PATH }}
6565 key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
6969 - shell : bash
7070 run : bash scripts/pre-install.sh && pnpm install --no-frozen-lockfile
7171
72- - uses : actions/cache@v4
72+ - uses : actions/cache@v5
7373 with :
7474 path : |
7575 **/.turbo
@@ -100,7 +100,7 @@ jobs:
100100 echo "LIB_PATH=$lib_path" >> $GITHUB_OUTPUT
101101 echo "BIN_PATH=${lib_path/\/lib//bin}" >> $GITHUB_OUTPUT
102102
103- - uses : actions/cache@v4
103+ - uses : actions/cache@v5
104104 id : npm-g-cache
105105 with :
106106 path : |
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ runs:
133133 cache : ' npm'
134134 cache-dependency-path : ' **/package-lock.json'
135135
136- - uses : actions/cache@v4
136+ - uses : actions/cache@v5
137137 id : npm-cache-root
138138 with :
139139 path : node_modules
@@ -152,7 +152,7 @@ runs:
152152 echo "BIN_PATH=${lib_path/\/lib//bin}" >> $GITHUB_OUTPUT
153153
154154 - if : github.event_name == 'push' || github.event_name == 'workflow_dispatch'
155- uses : actions/cache@v4
155+ uses : actions/cache@v5
156156 id : npm-g-cache
157157 with :
158158 path : |
@@ -215,27 +215,27 @@ runs:
215215 run : echo "deploy_codebase=ssr" >> $GITHUB_ENV
216216
217217 - if : env.deploy_codebase == '' || env.deploy_codebase == 'many'
218- uses : actions/cache@v4
218+ uses : actions/cache@v5
219219 id : npm-cache-many
220220 with :
221221 path : functions/many/node_modules
222222 key : ${{ runner.os }}-npm-${{ hashFiles('functions/many/package-lock.json') }}
223223
224224 - if : env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
225- uses : actions/cache@v4
225+ uses : actions/cache@v5
226226 id : npm-cache-ssr
227227 with :
228228 path : functions/ssr/node_modules
229229 key : ${{ runner.os }}-npm-${{ hashFiles('functions/ssr/package-lock.json') }}
230230
231231 - if : env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
232- uses : actions/cache@v4
232+ uses : actions/cache@v5
233233 with :
234234 path : functions/ssr/.cache
235235 key : ${{ runner.os }}-${{ env.year }}-sf-${{ hashFiles('functions/ssr/public/**/*') }}
236236
237237 - if : env.deploy_codebase == '' || env.deploy_codebase == 'with-apps'
238- uses : actions/cache@v4
238+ uses : actions/cache@v5
239239 id : npm-cache-with-apps
240240 with :
241241 path : functions/with-apps/node_modules
You can’t perform that action at this time.
0 commit comments