Skip to content

Commit 1891a4e

Browse files
committed
Update CI to use newer maven builds, prep for java 21
1 parent 44cbadf commit 1891a4e

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly

.github/workflows/build.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88

99
strategy:
10+
fail-fast: false
1011
matrix:
1112
os: [ubuntu-latest, windows-latest, macos-latest]
1213
steps:
@@ -34,15 +35,20 @@ jobs:
3435
runs-on: ubuntu-latest
3536

3637
strategy:
38+
fail-fast: false
3739
matrix:
38-
mvn: ['3.8.6', '3.6.3', '3.5.4', '3.3.9', '3.2.5']
40+
mvn: ['3.9.5', '3.8.8', '3.6.3', '3.5.4', '3.3.9', '3.2.5']
3941
java: ['11']
4042
# include: # Confirm that old java works in the oldest maven, and that newest maven supports 8-current
4143
# #TODO j2clmavenplugin#159 - re-enable this when the integration tests run cleanly in Java 17+
42-
# - mvn: '3.8.6'
44+
# - mvn: '3.8.8'
4345
# java: '17'
44-
# - mvn: '3.8.6'
45-
# java: '18'
46+
# - mvn: '3.8.8'
47+
# java: '21'
48+
# - mvn: '3.9.5'
49+
# java: '17'
50+
# - mvn: '3.9.5'
51+
# java: '21'
4652
steps:
4753
- name: Checkout
4854
uses: actions/checkout@v2

0 commit comments

Comments
 (0)