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
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ jobs:
49
49
runs-on: ubuntu-latest
50
50
steps:
51
51
- name: checkout
52
-
uses: actions/checkout@v4
52
+
uses: actions/checkout@v6
53
53
54
54
- name: Enable KVM
55
55
run: |
@@ -76,7 +76,7 @@ jobs:
76
76
target: [default, google_apis]
77
77
steps:
78
78
- name: checkout
79
-
uses: actions/checkout@v4
79
+
uses: actions/checkout@v6
80
80
81
81
- name: Enable KVM
82
82
run: |
@@ -102,7 +102,7 @@ jobs:
102
102
runs-on: ubuntu-latest
103
103
steps:
104
104
- name: checkout
105
-
uses: actions/checkout@v4
105
+
uses: actions/checkout@v6
106
106
107
107
- name: Enable KVM
108
108
run: |
@@ -127,7 +127,7 @@ jobs:
127
127
runs-on: ubuntu-latest
128
128
steps:
129
129
- name: checkout
130
-
uses: actions/checkout@v4
130
+
uses: actions/checkout@v6
131
131
132
132
- name: Enable KVM
133
133
run: |
@@ -146,8 +146,8 @@ jobs:
146
146
147
147
We can significantly reduce emulator startup time by setting up AVD snapshot caching:
148
148
149
-
1. add a `gradle/actions/setup-gradle@v4` step for caching Gradle, more details see [#229](https://github.com/ReactiveCircus/android-emulator-runner/issues/229)
150
-
2. add an `actions/cache@v4` step for caching the `avd`
149
+
1. add a `gradle/actions/setup-gradle@v5` step for caching Gradle, more details see [#229](https://github.com/ReactiveCircus/android-emulator-runner/issues/229)
150
+
2. add an `actions/cache@v5` step for caching the `avd`
151
151
3. add a `reactivecircus/android-emulator-runner@v2` step to generate a clean snapshot - specify `emulator-options` without `no-snapshot`
152
152
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