Skip to content

Commit

Permalink
v4 cache is buggy
Browse files Browse the repository at this point in the history
  • Loading branch information
duttonw committed Jun 7, 2024
1 parent 0825032 commit 88f6c89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/githubPackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:

- name: Cache Maven packages
id: cache-maven
uses: actions/cache@v4
uses: actions/cache@v2
with:
path: ~/.m2/repository
save-always: true
# save-always: true
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}
Expand Down Expand Up @@ -86,10 +86,10 @@ jobs:

- name: Cache Maven packages
id: cache-maven
uses: actions/cache@v4
uses: actions/cache@v2
with:
path: ~/.m2/repository
save-always: true
# save-always: true
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:

- name: Cache Maven packages
id: cache-maven
uses: actions/cache@v4
uses: actions/cache@v2
with:
path: ~/.m2/repository
save-always: true
# save-always: true
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}
Expand Down

0 comments on commit 88f6c89

Please sign in to comment.