Skip to content

Commit d63324c

Browse files
chore(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0abc835 commit d63324c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/analyze.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
melos-version: "6.3.2"
6767
- name: Restore Cache
68-
uses: actions/cache/restore@v4
68+
uses: actions/cache/restore@v5
6969
id: cache
7070
with:
7171
path: /home/linuxbrew/.linuxbrew
@@ -77,7 +77,7 @@ jobs:
7777
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
7878
brew install swift-format
7979
- name: Save Cache
80-
uses: actions/cache/save@v4
80+
uses: actions/cache/save@v5
8181
if: steps.cache.outputs.cache-hit != 'true'
8282
with:
8383
path: /home/linuxbrew/.linuxbrew

.github/workflows/test-and-build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
with:
106106
melos-version: "6.3.2"
107107
- name: Cache podfiles
108-
uses: actions/cache@v4
108+
uses: actions/cache@v5
109109
with:
110110
path: "**/Pods"
111111
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
@@ -193,7 +193,7 @@ jobs:
193193
with:
194194
melos-version: "6.3.2"
195195
- name: Cache podfiles
196-
uses: actions/cache@v4
196+
uses: actions/cache@v5
197197
with:
198198
path: "**/Pods"
199199
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
@@ -250,7 +250,7 @@ jobs:
250250
- name: Setup Android SDK
251251
uses: android-actions/setup-android@v3
252252
- name: AVD Cache
253-
uses: actions/cache@v4
253+
uses: actions/cache@v5
254254
id: avd-cache
255255
with:
256256
path: |
@@ -268,7 +268,7 @@ jobs:
268268
with:
269269
name: ${{ runner.os }}-build-artifact
270270
- name: Cache pub global packages
271-
uses: actions/cache@v4
271+
uses: actions/cache@v5
272272
with:
273273
path: ~/.pub-cache
274274
key: ${{ runner.os }}-pub-cache-${{ env.patrol_cli_version }}
@@ -373,14 +373,14 @@ jobs:
373373
with:
374374
name: ${{ runner.os }}-build-artifact
375375
- name: Cache podfiles
376-
uses: actions/cache@v4
376+
uses: actions/cache@v5
377377
with:
378378
path: "**/Pods"
379379
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
380380
restore-keys: |
381381
${{ runner.os }}-pods-
382382
- name: Cache pub global packages
383-
uses: actions/cache@v4
383+
uses: actions/cache@v5
384384
with:
385385
path: ~/.pub-cache
386386
key: ${{ runner.os }}-pub-cache-${{ env.patrol_cli_version }}

0 commit comments

Comments
 (0)