From 29a120834aa162babfaa62b2a1b264205145455f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 10:35:42 +0000 Subject: [PATCH 1/4] build(deps): bump actions/create-github-app-token from 2.1.0 to 2.1.1 Bumps [actions/create-github-app-token](https://github.com/actions/create-github-app-token) from 2.1.0 to 2.1.1. - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/0f859bf9e69e887678d5bbfbee594437cb440ffe...a8d616148505b5069dccd32f177bb87d7f39123b) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: 2.1.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f63e7f5789..4d21838bd39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Get auth token id: token - uses: actions/create-github-app-token@0f859bf9e69e887678d5bbfbee594437cb440ffe # v2.1.0 + uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1 with: app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }} private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }} From 1959463dd4aa8e12fce14070ca9f42d8e0fcd1f1 Mon Sep 17 00:00:00 2001 From: Roman Zavarnitsyn Date: Fri, 5 Sep 2025 14:32:07 +0200 Subject: [PATCH 2/4] Add adb uninstall command before installing APK --- .github/workflows/integration-tests-ui-critical.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/integration-tests-ui-critical.yml b/.github/workflows/integration-tests-ui-critical.yml index aef72c0d1d7..0af1359963b 100644 --- a/.github/workflows/integration-tests-ui-critical.yml +++ b/.github/workflows/integration-tests-ui-critical.yml @@ -131,6 +131,7 @@ jobs: disable-spellchecker: true emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -no-snapshot-save script: | + adb uninstall "${{env.APK_NAME}}" adb install -r -d "${{env.APK_NAME}}" maestro test "${{env.BASE_PATH}}/maestro" --debug-output "${{env.BASE_PATH}}/maestro-logs" From dba67141451d62e2a6737e73a38cd1eec6957086 Mon Sep 17 00:00:00 2001 From: Roman Zavarnitsyn Date: Fri, 5 Sep 2025 14:36:46 +0200 Subject: [PATCH 3/4] Change APK name in integration test script --- .github/workflows/integration-tests-ui-critical.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-ui-critical.yml b/.github/workflows/integration-tests-ui-critical.yml index 0af1359963b..de790fcc451 100644 --- a/.github/workflows/integration-tests-ui-critical.yml +++ b/.github/workflows/integration-tests-ui-critical.yml @@ -131,7 +131,7 @@ jobs: disable-spellchecker: true emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -no-snapshot-save script: | - adb uninstall "${{env.APK_NAME}}" + adb uninstall io.sentry.uitest.android.critical adb install -r -d "${{env.APK_NAME}}" maestro test "${{env.BASE_PATH}}/maestro" --debug-output "${{env.BASE_PATH}}/maestro-logs" From e49824d32c6d689b280bcbca7505064d68f8e162 Mon Sep 17 00:00:00 2001 From: Roman Zavarnitsyn Date: Fri, 5 Sep 2025 15:07:38 +0200 Subject: [PATCH 4/4] Handle case where app is not installed during uninstall --- .github/workflows/integration-tests-ui-critical.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-ui-critical.yml b/.github/workflows/integration-tests-ui-critical.yml index de790fcc451..d9745902341 100644 --- a/.github/workflows/integration-tests-ui-critical.yml +++ b/.github/workflows/integration-tests-ui-critical.yml @@ -131,7 +131,7 @@ jobs: disable-spellchecker: true emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -no-snapshot-save script: | - adb uninstall io.sentry.uitest.android.critical + adb uninstall io.sentry.uitest.android.critical || echo "Already uninstalled (or not found)" adb install -r -d "${{env.APK_NAME}}" maestro test "${{env.BASE_PATH}}/maestro" --debug-output "${{env.BASE_PATH}}/maestro-logs"