This is an automated email from the ASF dual-hosted git repository.
pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-whisker.git
The following commit(s) were added to refs/heads/master by this push:
new 0e89907 WHISKER-18: Try to remove artifact caching to see if it is
related to the windows build failures
0e89907 is described below
commit 0e8990767575a0a8ea3028de790a91e2b5166316
Author: P. Ottlinger <[email protected]>
AuthorDate: Sat May 10 21:17:03 2025 +0200
WHISKER-18: Try to remove artifact caching to see if it is related to the
windows build failures
---
.github/workflows/maven.yml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index c87847b..9f91998 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -47,13 +47,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- - name: Configure artifact caching
- uses: actions/cache@v4
- with:
- path: ~/.m2/repository
- key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- restore-keys: |
- ${{ runner.os }}-maven-
+# - name: Configure artifact caching
+# uses: actions/cache@v4
+# with:
+# path: ~/.m2/repository
+# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+# restore-keys: |
+# ${{ runner.os }}-maven-
- name: Set up JDK
uses: actions/setup-java@v4