Skip to content

Commit

Permalink
fixed patht to maven dependencies in runner's path
Browse files Browse the repository at this point in the history
  • Loading branch information
szandany committed Jun 1, 2023
1 parent 032f69b commit 5aacf41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Cache Maven packages
uses: actions/cache@v3 # defining cache key and restore keys for the cache step. Link to the documentation - https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows#matching-a-cache-key
with:
path: /root/.m2 # path to the directory where maven packages are stored - /root/.m2 in the container
path: ~/.m2/repository # path to the directory where maven packages are stored
key: ${{ runner.os }}-build-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-build-
# running liquibase quality checks step to ensure that the database changelogs are well-formed and follow best practices.
Expand Down

0 comments on commit 5aacf41

Please sign in to comment.