Skip to content

Commit 34035c0

Browse files
committed
Update CI to build against Java 21 and 25
Closes gh-1834
1 parent 4685bbf commit 34035c0

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,17 @@ concurrency:
77
group: ${{ github.workflow }}-${{ github.ref }}
88
jobs:
99
ci:
10-
name: 'Java ${{ matrix.java.version}} | Spring Framework ${{ matrix.spring.generation}}'
10+
name: 'Java ${{ matrix.java.version}}'
1111
if: ${{ github.repository == 'spring-projects/spring-webflow' }}
1212
runs-on: ubuntu-latest
1313
strategy:
1414
fail-fast: false
1515
matrix:
1616
java:
17-
- version: 17
17+
- version: 21
18+
toolchain: false
19+
- version: 25
1820
toolchain: false
19-
spring:
20-
- generation: 6.1.x
21-
version: 6.1.21
22-
- generation: 6.2.x
23-
version: 6.2.12
2421
steps:
2522
- name: Check Out Code
2623
uses: actions/checkout@v5
@@ -33,12 +30,11 @@ jobs:
3330
java-distribution: ${{ matrix.java.distribution }}
3431
java-toolchain: ${{ matrix.java.toolchain }}
3532
java-version: ${{ matrix.java.version }}
36-
spring-framework-version: ${{ matrix.spring.version }}
3733
- name: Send Notification
3834
if: always()
3935
uses: ./.github/actions/send-notification
4036
with:
4137
build-scan-url: ${{ steps.build.outputs.build-scan-url }}
42-
run-name: ${{ format('{0} | Java {1} | Spring Framework {2}', github.ref_name, matrix.java.version,matrix.spring.version) }}
38+
run-name: ${{ format('{0} | Java {1}', github.ref_name, matrix.java.version) }}
4339
status: ${{ job.status }}
4440
webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}

0 commit comments

Comments
 (0)