Skip to content

Commit 01e7003

Browse files
committed
Avoid cache overwrites by different runners that download different parts of maven
1 parent df4c2f1 commit 01e7003

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- uses: actions/checkout@v4
22+
- run: echo " " >> pom.xml # make sure the cache is slightly different for these runners
2223
- name: Set up JDK
2324
uses: actions/setup-java@v4
2425
with:
@@ -48,6 +49,7 @@ jobs:
4849
runs-on: ubuntu-latest
4950
steps:
5051
- uses: actions/checkout@v4
52+
- run: echo " " >> pom.xml # make sure the cache is slightly different for the lint
5153
- name: Set up JDK 11
5254
uses: actions/setup-java@v4
5355
with:

0 commit comments

Comments
 (0)