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-bcel.git
The following commit(s) were added to refs/heads/master by this push:
new 40892332 Upgrade from deprecated macos-13 to macos-latest in GitHub CI
40892332 is described below
commit 40892332882917b125b111c48b8ed4b43adb99c6
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Nov 5 07:04:10 2025 -0500
Upgrade from deprecated macos-13 to macos-latest in GitHub CI
---
.github/workflows/maven.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index edf0fc6e..9f6c496c 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -27,7 +27,7 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- os: [ubuntu-latest, windows-latest, macos-13]
+ os: [ubuntu-latest, windows-latest, macos-latest]
java: [ 8, 11, 17, 21, 25 ]
experimental: [false]
include:
@@ -50,7 +50,7 @@ jobs:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 #
v5.0.0
with:
- distribution: 'temurin'
+ distribution: ${{ runner.os == 'macOS' && matrix.java == '8' && 'zulu'
|| 'temurin' }}
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn --errors --show-version --batch-mode --no-transfer-progress
-DtrimStackTrace=false -Ddoclint=none