Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/device-tests-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ jobs:
path: bin

- name: Setup Gradle
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0
Copy link
Copy Markdown
Member

@Flash0ver Flash0ver Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: upgrade to v6.1.0 with basic caching -or- remain at v5.0.2 (for now)

The basic caching component has significant limitations:

But I don't think we need any of these features ... do we?

The Gradle Technologies Terms of Use (to use v6's Enhanced Caching) are currently under review by Legal.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the "Basic Cache Provider" suffices (instead of the "Enhanced Cache Provider"),
we can then also remove the change from #5086 again, which does not work as expected anyway:

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)

with:
cache-provider: basic # 'enhanced' (default) is not open source under a proprietary license; 'basic' uses MIT
Comment on lines +134 to +135
Copy link
Copy Markdown
Member

@Flash0ver Flash0ver Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: https://github.com/gradle/actions/blob/main/DISTRIBUTION.md

Gradle's Setup action changed the licensing of it's caching component (gradle-actions-caching) to a proprietary / commercially-based license in 6.0.0.
Now, 6.1.0 has added an explicit opt-in to instead use an open-source caching component, based on https://github.com/actions/cache. The default remains the non-open-source non-MIT gradle-actions-caching caching component.


# Cached AVD setup per https://github.com/ReactiveCircus/android-emulator-runner/blob/main/README.md

Expand Down
Loading