Skip to content

Commit 950e268

Browse files
committed
Configure github actions cache
1 parent a01c722 commit 950e268

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/maven.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ jobs:
5656
java-version: '22'
5757
distribution: 'temurin'
5858
cache: maven
59+
- name: Cache Maven packages
60+
uses: actions/cache@v4
61+
with:
62+
path: ~/.m2
63+
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
64+
restore-keys: ${{ runner.os }}-m2
5965
- name: Build plugins with Tycho
6066
run: ./mvnw -B -f plugins/eclipse install
6167

neoemf-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
<dependency>
127127
<groupId>org.mockito</groupId>
128128
<artifactId>mockito-core</artifactId>
129-
<version>3.6.0</version>
129+
<version>5.13.0</version>
130130
</dependency>
131131

132132
<dependency>

0 commit comments

Comments
 (0)