We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b63eb commit 18a3e9eCopy full SHA for 18a3e9e
.github/actions/gradle-task/action.yml
@@ -25,6 +25,13 @@ runs:
25
using: 'composite'
26
steps:
27
28
+ # Around March 2025 we've started seeing jobs fail with what looks like
29
+ # a race initialize version catalog (failure to resolve 'libs.', etc.).
30
+ # Forcing an initial run of `tasks` fixes that.
31
+ - name: Initial Gradle command
32
+ shell: bash
33
+ run: ./gradlew tasks
34
+
35
- name: Set up JDK
36
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4
37
with:
0 commit comments