Skip to content

Commit b5e2c15

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 de55937 commit b5e2c15

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/analyze.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
distribution: "temurin"
5151
java-version: "17"
5252
- name: Restore Cache
53-
uses: actions/cache/restore@v4
53+
uses: actions/cache/restore@v5
5454
id: cache
5555
with:
5656
path: /home/linuxbrew/.linuxbrew
@@ -65,7 +65,7 @@ jobs:
6565
echo 'brew "swift-format.rb"' > Brewfile
6666
brew bundle
6767
- name: Save Cache
68-
uses: actions/cache/save@v4
68+
uses: actions/cache/save@v5
6969
if: steps.cache.outputs.cache-hit != 'true'
7070
with:
7171
path: /home/linuxbrew/.linuxbrew

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
working_directory: ["example"]
7878
steps:
7979
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
80-
- uses: actions/cache@v4
80+
- uses: actions/cache@v5
8181
with:
8282
path: "**/Pods"
8383
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
@@ -143,7 +143,7 @@ jobs:
143143
- uses: bluefireteam/melos-action@6085791af7036f6366c9a4b9d55105c0ef9c6388
144144
with:
145145
melos-version: "6.0.0"
146-
- uses: actions/cache@v4
146+
- uses: actions/cache@v5
147147
with:
148148
path: "**/Pods"
149149
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}

0 commit comments

Comments
 (0)