Skip to content

Commit 0134ee2

Browse files
authored
chore(ci): fix builds failing due to outdated action (#253)
* chore(ci): fix builds failing due to outdated action * chore(ci): fix builds failing due to outdated action * chore(ci): fix builds failing due to outdated action
1 parent 1376b7d commit 0134ee2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Build Android Example App
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v4
2929

3030
- name: Setup JDK 17
3131
uses: actions/setup-java@v1
@@ -36,7 +36,7 @@ jobs:
3636
id: yarn-cache-dir-path
3737
run: echo "::set-output name=dir::$(yarn cache dir)"
3838
- name: Restore node_modules from cache
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4
4040
id: yarn-cache
4141
with:
4242
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -49,7 +49,7 @@ jobs:
4949
run: yarn install --frozen-lockfile --cwd example
5050

5151
- name: Restore Gradle cache
52-
uses: actions/cache@v2
52+
uses: actions/cache@v4
5353
with:
5454
path: |
5555
~/.gradle/caches

.github/workflows/build-ios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
run:
2727
working-directory: example/ios
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v4
3030

3131
- name: Get yarn cache directory path
3232
id: yarn-cache-dir-path
3333
run: echo "::set-output name=dir::$(yarn cache dir)"
3434
- name: Restore node_modules from cache
35-
uses: actions/cache@v2
35+
uses: actions/cache@v4
3636
id: yarn-cache
3737
with:
3838
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -56,7 +56,7 @@ jobs:
5656
working-directory: example
5757

5858
- name: Restore Pods cache
59-
uses: actions/cache@v2
59+
uses: actions/cache@v4
6060
with:
6161
path: |
6262
example/ios/Pods

0 commit comments

Comments
 (0)