File tree Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -20,18 +20,18 @@ jobs:
20
20
android-build :
21
21
runs-on : macos-latest
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
- uses : ./.github/actions/install-dependencies
25
25
26
26
- name : Pull dependencies
27
- uses : actions/cache@v3
27
+ uses : actions/cache@v4
28
28
with :
29
29
path : ./node_modules
30
30
key : ${{ hashFiles('./package.json') }}
31
31
32
32
- name : Cache example node modules
33
33
id : cache-example-npm
34
- uses : actions/cache@v3
34
+ uses : actions/cache@v4
35
35
env :
36
36
cache-name : cached-example-npm-deps
37
37
with :
@@ -42,21 +42,21 @@ jobs:
42
42
if : steps.cache-example-npm.outputs.cache-hit != 'true'
43
43
run : yarn bootstrap-no-pods --frozen-lockfile
44
44
45
- - uses : actions/setup-java@v3
45
+ - uses : actions/setup-java@v4
46
46
with :
47
47
distribution : ' zulu'
48
48
java-version : ' 11'
49
49
50
50
- name : Gradle cache
51
- uses : actions/cache@v3
51
+ uses : actions/cache@v4
52
52
with :
53
53
path : |
54
54
~/.gradle/caches
55
55
~/.gradle/wrapper
56
56
key : gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
57
57
58
58
- name : AVD cache
59
- uses : actions/cache@v3
59
+ uses : actions/cache@v4
60
60
id : avd-cache
61
61
with :
62
62
path : |
99
99
100
100
- name : Upload report
101
101
if : always()
102
- uses : actions/upload-artifact@v3
102
+ uses : actions/upload-artifact@v4
103
103
with :
104
104
name : E2E Report
105
105
path : |
@@ -109,7 +109,7 @@ jobs:
109
109
~/.maestro/tests/**/*
110
110
111
111
- name : Store tests result
112
- uses : actions/upload-artifact@v3
112
+ uses : actions/upload-artifact@v4
113
113
with :
114
114
name : e2e_android_report
115
115
path : |
Original file line number Diff line number Diff line change @@ -20,18 +20,18 @@ jobs:
20
20
ios-build :
21
21
runs-on : macos-latest
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
- uses : ./.github/actions/install-dependencies
25
25
26
26
- name : Pull dependencies
27
- uses : actions/cache@v3
27
+ uses : actions/cache@v4
28
28
with :
29
29
path : ./node_modules
30
30
key : ${{ hashFiles('./package.json') }}
31
31
32
32
- name : Cache example node modules
33
33
id : cache-example-npm
34
- uses : actions/cache@v3
34
+ uses : actions/cache@v4
35
35
env :
36
36
cache-name : cached-example-npm-deps
37
37
with :
45
45
46
46
- name : Cache Pods
47
47
id : cache-pods
48
- uses : actions/cache@v3
48
+ uses : actions/cache@v4
49
49
env :
50
50
cache-name : cached-ios-pods-deps
51
51
with :
Original file line number Diff line number Diff line change 18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- name : Checkout repository
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
- name : Install dependencies
23
23
uses : ./.github/actions/install-dependencies
24
24
@@ -28,17 +28,17 @@ jobs:
28
28
needs : install-dependencies
29
29
steps :
30
30
- name : Checkout repository
31
- uses : actions/checkout@v3
31
+ uses : actions/checkout@v4
32
32
33
33
- name : Pull dependencies
34
- uses : actions/cache@v3
34
+ uses : actions/cache@v4
35
35
with :
36
36
path : ./node_modules
37
37
key : ${{ hashFiles('./package.json') }}
38
38
39
39
- name : Pull example node modules
40
40
id : cache-example-npm
41
- uses : actions/cache@v3
41
+ uses : actions/cache@v4
42
42
env :
43
43
cache-name : cached-example-npm-deps
44
44
with :
You can’t perform that action at this time.
0 commit comments