You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ jobs:
32
32
runs-on: macos-latest
33
33
steps:
34
34
- name: checkout
35
-
uses: actions/checkout@v2
35
+
uses: actions/checkout@v3
36
36
37
37
- name: run tests
38
38
uses: reactivecircus/android-emulator-runner@v2
@@ -53,7 +53,7 @@ jobs:
53
53
target: [default, google_apis]
54
54
steps:
55
55
- name: checkout
56
-
uses: actions/checkout@v2
56
+
uses: actions/checkout@v3
57
57
58
58
- name: run tests
59
59
uses: reactivecircus/android-emulator-runner@v2
@@ -73,7 +73,7 @@ jobs:
73
73
runs-on: macos-latest
74
74
steps:
75
75
- name: checkout
76
-
uses: actions/checkout@v2
76
+
uses: actions/checkout@v3
77
77
78
78
- name: run tests
79
79
uses: reactivecircus/android-emulator-runner@v2
@@ -87,7 +87,7 @@ jobs:
87
87
We can significantly reduce emulator startup time by setting up AVD snapshot caching:
88
88
89
89
1. add a `gradle/gradle-build-action@v2` step for caching Gradle, more details see [#229](https://github.com/ReactiveCircus/android-emulator-runner/issues/229)
90
-
2. add an `actions/cache@v2` step for caching the `avd`
90
+
2. add an `actions/cache@v3` step for caching the `avd`
91
91
3. add a `reactivecircus/android-emulator-runner@v2` step to generate a clean snapshot - specify `emulator-options` without `no-snapshot`
92
92
4. add another `reactivecircus/android-emulator-runner@v2` step to run your tests using existing AVD / snapshot - specify `emulator-options` with `no-snapshot-save`
0 commit comments