Skip to content

Commit d168fdc

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] <support@github.com>
1 parent 21911d8 commit d168fdc

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
@@ -66,7 +66,7 @@ jobs:
6666
with:
6767
melos-version: "6.3.2"
6868
- name: Restore Cache
69-
uses: actions/cache/restore@v4
69+
uses: actions/cache/restore@v5
7070
id: cache
7171
with:
7272
path: /home/linuxbrew/.linuxbrew
@@ -78,7 +78,7 @@ jobs:
7878
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
7979
brew install swift-format
8080
- name: Save Cache
81-
uses: actions/cache/save@v4
81+
uses: actions/cache/save@v5
8282
if: steps.cache.outputs.cache-hit != 'true'
8383
with:
8484
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: Cache ADB keys
253-
uses: actions/cache@v4
253+
uses: actions/cache@v5
254254
with:
255255
path: ~/.android/adb*
256256
key: adb-keys
@@ -265,7 +265,7 @@ jobs:
265265
with:
266266
name: ${{ runner.os }}-build-artifact
267267
- name: Cache pub global packages
268-
uses: actions/cache@v4
268+
uses: actions/cache@v5
269269
with:
270270
path: ~/.pub-cache
271271
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)