Skip to content

Commit e29be13

Browse files
authored
Merge pull request #267 from jenkinsci/remove-java17
Build project only with Java 21 and 25
2 parents 5cdc995 + 508b5de commit e29be13

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/check-md-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: push
55
jobs:
66
check-markdown-links:
77
name: 'Check Markdown links'
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v5
1111
- uses: umbrelladocs/action-linkspector@v1.4.0

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
platform: [ubuntu-latest, macos-latest, windows-latest]
15-
jdk: [17, 21, 25]
15+
jdk: [21, 25]
1616

1717
runs-on: ${{ matrix.platform }}
1818
name: on ${{ matrix.platform }} with JDK ${{ matrix.jdk }}
@@ -33,4 +33,4 @@ jobs:
3333
- name: Build with Maven
3434
env:
3535
BROWSER: chrome-container
36-
run: mvn -V --color always -ntp clean verify '-Djenkins.test.timeout=5000' '-Dgpg.skip' -Pno-ui-tests
36+
run: mvn -V --color always -ntp clean verify -Pci -Pno-ui-tests '-Djenkins.test.timeout=5000' '-Dgpg.skip'

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/setup-java@v5
3030
with:
3131
distribution: temurin
32-
java-version: 21
32+
java-version: 25
3333
cache: maven
3434

3535
- name: Set up Maven

0 commit comments

Comments
 (0)