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 954c1bc WHISKER-18: Try out failing windows JDK runs on GHA
954c1bc is described below
commit 954c1bc625f609c6deb771ecdc8ae804589d7c56
Author: P. Ottlinger <[email protected]>
AuthorDate: Sat May 10 21:04:07 2025 +0200
WHISKER-18: Try out failing windows JDK runs on GHA
---
.github/workflows/maven.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index ddf48c5..c87847b 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -36,8 +36,8 @@ jobs:
# Caused by: sun.security.validator.ValidatorException: PKIX path building
failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target
#
# Java 17 disabled, because we are running into
https://bugs.openjdk.java.net/browse/JDK-8270866
-# java: [8, 11, 17, 21]
- java: [21]
+ java: [8, 11, 17, 21]
+# java: [21]
fail-fast: false
runs-on: ${{ matrix.os }}
@@ -47,7 +47,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- - name: Configura artifact caching
+ - name: Configure artifact caching
uses: actions/cache@v4
with:
path: ~/.m2/repository
@@ -58,7 +58,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
- distribution: temurin
+ distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'