Skip to content

Commit b81bb7a

Browse files
chore(deps): update actions/cache action to v5
1 parent f6e10bb commit b81bb7a

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/branch-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
2626
2727
- name: 🏗 Setup PNPM cache
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
3131
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
4141
4242
- name: 🏗 Setup PNPM cache
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
with:
4545
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
4646
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -53,7 +53,7 @@ jobs:
5353
node-version: 20.x
5454

5555
- name: "📦 Cache Node Modules"
56-
uses: actions/cache@v4.3.0
56+
uses: actions/cache@v5.0.5
5757
id: cache-node-modules
5858
with:
5959
path: node_modules

.github/workflows/e2e-ios.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT"
114114
115115
- name: 🏗 Setup PNPM cache
116-
uses: actions/cache@v4
116+
uses: actions/cache@v5
117117
with:
118118
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
119119
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -139,7 +139,7 @@ jobs:
139139
# success; restore/save lets us save unconditionally.
140140
- name: 🗄 Restore ccache compiler cache
141141
id: ccache-restore
142-
uses: actions/cache/restore@v4
142+
uses: actions/cache/restore@v5
143143
with:
144144
path: ~/.ccache
145145
key: ${{ runner.os }}-ccache-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -148,7 +148,7 @@ jobs:
148148
149149
- name: 🗄 Restore CocoaPods (specs + downloaded sources)
150150
id: pods-cache-restore
151-
uses: actions/cache/restore@v4
151+
uses: actions/cache/restore@v5
152152
with:
153153
path: |
154154
~/.cocoapods
@@ -159,7 +159,7 @@ jobs:
159159
160160
- name: 🗄 Restore iOS Pods/build/DerivedData
161161
id: ios-cache-restore
162-
uses: actions/cache/restore@v4
162+
uses: actions/cache/restore@v5
163163
with:
164164
path: |
165165
${{ env.EXAMPLE_DIR }}/ios/Pods
@@ -247,14 +247,14 @@ jobs:
247247
# GHA cache quota re-uploading identical contents.
248248
- name: 💾 Save ccache compiler cache
249249
if: always() && steps.ccache-restore.outputs.cache-hit != 'true'
250-
uses: actions/cache/save@v4
250+
uses: actions/cache/save@v5
251251
with:
252252
path: ~/.ccache
253253
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
254254

255255
- name: 💾 Save CocoaPods cache
256256
if: always() && steps.pods-cache-restore.outputs.cache-hit != 'true'
257-
uses: actions/cache/save@v4
257+
uses: actions/cache/save@v5
258258
with:
259259
path: |
260260
~/.cocoapods
@@ -263,7 +263,7 @@ jobs:
263263

264264
- name: 💾 Save iOS Pods/build/DerivedData cache
265265
if: always() && steps.ios-cache-restore.outputs.cache-hit != 'true'
266-
uses: actions/cache/save@v4
266+
uses: actions/cache/save@v5
267267
with:
268268
path: |
269269
${{ env.EXAMPLE_DIR }}/ios/Pods

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
3636
3737
- name: 🏗 Setup PNPM cache
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
4141
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -48,7 +48,7 @@ jobs:
4848
node-version: 20.x
4949

5050
- name: "📦 Cache Node Modules"
51-
uses: actions/cache@v4.3.0
51+
uses: actions/cache@v5.0.5
5252
id: cache-node-modules
5353
with:
5454
path: node_modules

0 commit comments

Comments
 (0)