diff --git a/.github/actions/setup-gradle/action.yml b/.github/actions/setup-gradle/action.yml index ed94f9c9ed633d..fbaf72d395d430 100644 --- a/.github/actions/setup-gradle/action.yml +++ b/.github/actions/setup-gradle/action.yml @@ -15,4 +15,5 @@ runs: cache-read-only: ${{ (github.ref != 'refs/heads/main' && !contains(github.ref, '-stable')) || inputs.cache-read-only == 'true' }} # Similarly, for those jobs we want to start with a clean cache so it doesn't grow without limits (this is the negation of the previous condition). cache-write-only: ${{ (github.ref == 'refs/heads/main' || contains(github.ref, '-stable')) && inputs.cache-read-only != 'true' }} - gradle-home-cache-cleanup: true + # Temporarily disabling to try resolve a cache cleanup failure + # gradle-home-cache-cleanup: true