From aeada0a715c20e736024557f497ef19d9b041b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20P=C3=B6lz?= <38893694+Flash0ver@users.noreply.github.com> Date: Mon, 30 Mar 2026 18:46:39 +0200 Subject: [PATCH 1/3] Revert "build(deps): bump gradle/actions from 5.0.2 to 6.0.1 (#5072)" This reverts commit ea09e22672448e6298a33641de36c6c528c1a6f6. --- .github/workflows/device-tests-android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/device-tests-android.yml b/.github/workflows/device-tests-android.yml index 8f988f2346..99e5fc88df 100644 --- a/.github/workflows/device-tests-android.yml +++ b/.github/workflows/device-tests-android.yml @@ -130,7 +130,7 @@ jobs: path: bin - name: Setup Gradle - uses: gradle/actions/setup-gradle@39e147cb9de83bb9910b8ef8bd7fff0ee20fcd6f # v6.0.1 + uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 # Cached AVD setup per https://github.com/ReactiveCircus/android-emulator-runner/blob/main/README.md From f6de8fcf93d0195845acf2e87282bbcdc800570c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20P=C3=B6lz?= <38893694+Flash0ver@users.noreply.github.com> Date: Mon, 30 Mar 2026 19:15:41 +0200 Subject: [PATCH 2/3] ci(dependabot): ignore gradle/actions/setup-gradle >= 6 --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2e7026c9e1..2517933e34 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,6 +22,9 @@ updates: directory: "/" schedule: interval: weekly + ignore: + - dependency-name: "gradle/actions/setup-gradle" + versions: '>= 6.0.0' # license change: the bundled 'gradle-actions-caching' component is licensed and governed by a separate license (no longer MIT) - package-ecosystem: "npm" directory: "/" From d042e3d96a0529b64916ac70531efb5593cb825b Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 30 Mar 2026 20:00:14 +0000 Subject: [PATCH 3/3] fix: use array syntax for dependabot ignore versions Co-Authored-By: Codex Applied via @cursor push command --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2517933e34..956cc5abc6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -24,7 +24,7 @@ updates: interval: weekly ignore: - dependency-name: "gradle/actions/setup-gradle" - versions: '>= 6.0.0' # license change: the bundled 'gradle-actions-caching' component is licensed and governed by a separate license (no longer MIT) + versions: ['>= 6.0.0'] # license change: the bundled 'gradle-actions-caching' component is licensed and governed by a separate license (no longer MIT) - package-ecosystem: "npm" directory: "/"