We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb86d40 commit c0b2479Copy full SHA for c0b2479
2 files changed
.github/workflows/build.yml
@@ -11,6 +11,13 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
14
+ - name: Cache local Maven repository
15
+ uses: actions/cache@v4
16
+ with:
17
+ path: ~/.m2/repository
18
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
19
+ restore-keys: |
20
+ ${{ runner.os }}-maven-
21
- name: Set up Java
22
uses: actions/setup-java@v4
23
with:
.github/workflows/deploy.yml
@@ -13,6 +13,13 @@ jobs:
packages: write
24
25
0 commit comments