Skip to content

Commit b187b14

Browse files
committed
Merge branch 'main' of github.com:ecomplus/cloud-commerce
2 parents 2efa863 + 7abcd65 commit b187b14

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/test-apps.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: |
5757
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
5858
59-
- uses: actions/cache@v3
59+
- uses: actions/cache@v4
6060
with:
6161
path: ${{ steps.pnpm-paths.outputs.STORE_PATH }}
6262
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -66,7 +66,7 @@ jobs:
6666
- shell: bash
6767
run: bash scripts/pre-install.sh && pnpm install --no-frozen-lockfile
6868

69-
- uses: actions/cache@v3
69+
- uses: actions/cache@v4
7070
with:
7171
path: |
7272
**/.turbo
@@ -97,7 +97,7 @@ jobs:
9797
echo "LIB_PATH=$lib_path" >> $GITHUB_OUTPUT
9898
echo "BIN_PATH=${lib_path/\/lib//bin}" >> $GITHUB_OUTPUT
9999
100-
- uses: actions/cache@v3
100+
- uses: actions/cache@v4
101101
id: npm-g-cache
102102
with:
103103
path: |

action.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ runs:
113113
cache: 'npm'
114114
cache-dependency-path: '**/package-lock.json'
115115

116-
- uses: actions/cache@v3
116+
- uses: actions/cache@v4
117117
id: npm-cache-root
118118
with:
119119
path: node_modules
@@ -131,7 +131,7 @@ runs:
131131
echo "LIB_PATH=$lib_path" >> $GITHUB_OUTPUT
132132
echo "BIN_PATH=${lib_path/\/lib//bin}" >> $GITHUB_OUTPUT
133133
134-
- uses: actions/cache@v3
134+
- uses: actions/cache@v4
135135
id: npm-g-cache
136136
with:
137137
path: |
@@ -185,27 +185,27 @@ runs:
185185
run: echo "deploy_codebase=ssr" >> $GITHUB_ENV
186186

187187
- if: env.deploy_codebase == '' || env.deploy_codebase == 'many'
188-
uses: actions/cache@v3
188+
uses: actions/cache@v4
189189
id: npm-cache-many
190190
with:
191191
path: functions/many/node_modules
192192
key: ${{ runner.os }}-npm-${{ hashFiles('functions/many/package-lock.json') }}
193193

194194
- if: env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
195-
uses: actions/cache@v3
195+
uses: actions/cache@v4
196196
id: npm-cache-ssr
197197
with:
198198
path: functions/ssr/node_modules
199199
key: ${{ runner.os }}-npm-${{ hashFiles('functions/ssr/package-lock.json') }}
200200

201201
- if: env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
202-
uses: actions/cache@v3
202+
uses: actions/cache@v4
203203
with:
204204
path: functions/ssr/.cache
205205
key: ${{ runner.os }}-${{ env.year }}-storefront
206206

207207
- if: env.deploy_codebase == '' || env.deploy_codebase == 'with-apps'
208-
uses: actions/cache@v3
208+
uses: actions/cache@v4
209209
id: npm-cache-with-apps
210210
with:
211211
path: functions/with-apps/node_modules

0 commit comments

Comments
 (0)