We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 262d13c commit 0a2a4a9Copy full SHA for 0a2a4a9
.github/workflows/checkVersions.yml
@@ -48,7 +48,15 @@ jobs:
48
with:
49
java-version: 21
50
distribution: 'temurin'
51
- cache: maven
+
52
+ # Use a dedicated cache to prevent conflicts with the verification build cache
53
+ - name: Cache local Maven repository
54
+ uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 #v4.2.3
55
+ with:
56
+ path: ~/.m2/repository
57
+ key: version-check-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
58
+ restore-keys: |
59
+ version-check-${{ runner.os }}-maven-
60
61
- name: Set up Maven
62
uses: stCarolas/setup-maven@d6af6abeda15e98926a57b5aa970a96bb37f97d1 # v5
0 commit comments