This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push:
new 02537981c CI builds: Replace Java 22 with Java 23
02537981c is described below
commit 02537981ccb1e7675b312457ad69d1a404edc41c
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Sep 18 20:34:57 2024 -0400
CI builds: Replace Java 22 with Java 23
---
.github/workflows/maven.yml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 14d583a0f..f784ff1ee 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -37,7 +37,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
- java: [ 8, 11, 17, 21, 22 ]
+ java: [ 8, 11, 17, 21 ]
experimental: [false]
# Keep the same parameter order as the matrix above
include:
@@ -46,15 +46,15 @@ jobs:
java: 21
experimental: false
deploy: true
- # Experimental builds: Java 23-ea
+ # Experimental builds: Java 23
- os: ubuntu-latest
- java: 23-ea
+ java: 23
experimental: true
- os: windows-latest
- java: 23-ea
+ java: 23
experimental: true
- os: macos-latest
- java: 23-ea
+ java: 23
experimental: true
# Experimental builds: Java 24-ea
- os: ubuntu-latest