Skip to content

Commit 249dc19

Browse files
devonfw#1024: changed java version in github actions from 17 to 21
1 parent 702af2d commit 249dc19

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
- name: Set up JDK
1212
uses: actions/setup-java@v1
1313
with:
14-
java-version: '17'
14+
java-version: '21'
1515
- name: Build project with Maven
1616
run: mvn -B -ntp -Dstyle.color=always install
1717
- name: Coveralls GitHub Action
18-
uses: coverallsapp/[email protected]
18+
uses: coverallsapp/[email protected]

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up JDK
1616
uses: actions/setup-java@v1
1717
with:
18-
java-version: '17'
18+
java-version: '21'
1919
- name: Build project with Maven
2020
run: mvn -B -ntp -Dstyle.color=always install
2121
- name: Coveralls GitHub Action

.github/workflows/nightly-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Set up JDK
7373
uses: actions/setup-java@v1
7474
with:
75-
java-version: '17'
75+
java-version: '21'
7676
- name: Download natives and build project
7777
uses: actions/download-artifact@v4
7878
with:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Set up Apache Maven Central
7979
uses: actions/setup-java@v3
8080
with:
81-
java-version: 17
81+
java-version: 21
8282
distribution: 'temurin'
8383
cache: 'maven'
8484
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import

.github/workflows/update-urls.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Java
2121
uses: actions/setup-java@v3
2222
with:
23-
java-version: 17
23+
java-version: 21
2424
distribution: 'temurin'
2525
cache: 'maven'
2626
- name: Build and run url updater

0 commit comments

Comments
 (0)