Skip to content

Commit

Permalink
Configure github actions cache
Browse files Browse the repository at this point in the history
  • Loading branch information
sunye committed Oct 1, 2024
1 parent a01c722 commit 950e268
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ jobs:
java-version: '22'
distribution: 'temurin'
cache: maven
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build plugins with Tycho
run: ./mvnw -B -f plugins/eclipse install

Expand Down
2 changes: 1 addition & 1 deletion neoemf-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.6.0</version>
<version>5.13.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 950e268

Please sign in to comment.