Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Mar 25, 2024
1 parent f47de13 commit f098375
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/buildandtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: node_modules
Expand All @@ -39,7 +39,7 @@ jobs:
if: ${{ needs.diff_check.outputs.skip_ci != 'true' }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: node_modules
Expand All @@ -57,7 +57,7 @@ jobs:
if: ${{ needs.diff_check.outputs.skip_ci != 'true' }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: samples/react-native/node_modules
Expand All @@ -77,7 +77,7 @@ jobs:
if: ${{ needs.diff_check.outputs.skip_ci != 'true' }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: node_modules
Expand All @@ -100,7 +100,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: node_modules
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: test/typescript/ts3.8/node_modules
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
with:
node-version: 18
- name: Cache Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
path: node_modules
Expand Down Expand Up @@ -223,13 +223,13 @@ jobs:
with:
node-version: 18
- name: Cache Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
path: node_modules
key: ${{ runner.os }}-${{ github.sha }}
- name: Cache Sample Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-sample
with:
path: samples/react-native/node_modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
distribution: "adopt"
- name: Gradle cache
uses: gradle/gradle-build-action@v2
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: samples/react-native/node_modules
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: gradle/gradle-build-action@v2
- name: Install Global Dependencies
run: yarn global add react-native-cli @sentry/cli yalc
- uses: actions/cache@v3
- uses: actions/cache@v4
id: deps-cache
with:
path: |
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/cache@v3
- uses: actions/cache@v4
id: app-plain-cache
with:
path: ${{ matrix.appPlain }}
Expand Down Expand Up @@ -252,14 +252,14 @@ jobs:
run: brew install xcbeautify

- name: NPM cache SDK
uses: actions/cache@v3
uses: actions/cache@v4
id: deps-cache
with:
path: node_modules
key: ${{ github.workflow }}-${{ github.job }}-npm-${{ hashFiles('yarn.lock') }}

- name: NPM cache E2E Tests Library
uses: actions/cache@v3
uses: actions/cache@v4
id: deps-cache-e2e-library
with:
path: test/e2e/node_modules
Expand Down Expand Up @@ -516,7 +516,7 @@ jobs:
sudo udevadm trigger --name-match=kvm
- name: NPM cache E2E Tests Library
uses: actions/cache@v3
uses: actions/cache@v4
id: deps-cache-e2e-library
with:
path: test/e2e/node_modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/native-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4

- name: NPM cache
uses: actions/cache@v3
uses: actions/cache@v4
id: deps-cache
with:
path: node_modules
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
sudo udevadm trigger --name-match=kvm
- name: AVD cache
uses: actions/cache@v3
uses: actions/cache@v4
id: avd-cache
with:
path: |
Expand Down

0 comments on commit f098375

Please sign in to comment.