diff --git a/.github/workflows/ci-it.yaml b/.github/workflows/ci-it.yaml index 943a1aa2b9d6575e7c897c155dc4759dc09beee6..0b360b0adb621f91cd6c201ce55f80f05e60becd 100644 --- a/.github/workflows/ci-it.yaml +++ b/.github/workflows/ci-it.yaml @@ -64,7 +64,7 @@ jobs: uses: actions/cache@v2 with: path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + key: ${{ runner.os }}-maven-ci-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-maven- - uses: actions/setup-java@v2 if: env.SKIP_CI != 'true' @@ -100,6 +100,13 @@ jobs: with: name: dist path: dist + - name: Cache local Maven repository + if: env.SKIP_CI != 'true' + uses: actions/cache@v2 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-ci-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-maven- - name: Check Dependencies Licenses if: env.SKIP_CI != 'true' run: tools/dependencies/check-LICENSE.sh