Skip to content

Commit

Permalink
temp 3
Browse files Browse the repository at this point in the history
  • Loading branch information
holashchand committed Aug 16, 2024
1 parent d76f696 commit 0f69873
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
distribution: 'adopt'
cache: 'maven'
- name: Cache Maven dependencies
uses: actions/cache@v2
uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml','**/pom.xml', 'services/*/pom.xml', 'java/*/pom.xml', 'java/*/*/pom.xml', 'java/*/*/*/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Cache Docker layers
uses: actions/cache@v2
id: docker-cache
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ github.sha }}
key: ${{ runner.os }}-docker-buildx
restore-keys: |
${{ runner.os }}-docker-
${{ runner.os }}-docker-buildx
- name: Set up properties
run: sh configure-dependencies.sh
- name: Check space before free up the space
Expand Down

0 comments on commit 0f69873

Please sign in to comment.