Skip to content

Commit 4e89b06

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 9be1d22 commit 4e89b06

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/native_build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
cache: 'yarn'
2828
cache-dependency-path: '**/yarn.lock'
2929

30-
- uses: actions/cache@v4
30+
- uses: actions/cache@v5
3131
with:
3232
path: |
3333
~/.npm
@@ -63,7 +63,7 @@ jobs:
6363
cache: 'yarn'
6464
cache-dependency-path: '**/yarn.lock'
6565

66-
- uses: actions/cache@v4
66+
- uses: actions/cache@v5
6767
with:
6868
path: |
6969
~/.npm
@@ -75,15 +75,15 @@ jobs:
7575
${{ runner.os }}-node-
7676
7777
- name: Cache gem bundle
78-
uses: actions/cache@v4
78+
uses: actions/cache@v5
7979
with:
8080
path: ./ci/vendor
8181
key: ${{ runner.os }}-gembundle-${{ hashFiles('**/Gemfile.lock') }}
8282
restore-keys: |
8383
${{ runner.os }}-gembundle-
8484
8585
- name: Cache cocoapods
86-
uses: actions/cache@v4
86+
uses: actions/cache@v5
8787
with:
8888
path: ./ci/ios/Pods
8989
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
node-version: 22
2121

22-
- uses: actions/cache@v4
22+
- uses: actions/cache@v5
2323
with:
2424
path: |
2525
~/.npm

0 commit comments

Comments
 (0)