Skip to content

Commit 5bbb421

Browse files
authored
FMA - Upgrade java-continuous-integration with Java 17
1 parent a909faa commit 5bbb421

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/java-continuous-integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This workflow is triggered each time
44
# commits are pushed to GitHub or a pull request is opened.
55
# It launches three jobs in parallel : a build with java 8,
6-
# a build with java 11 and a SonarCloud analysis.
6+
# a build with java 17 and a SonarCloud analysis.
77
---
88
name: Java CI
99

@@ -13,7 +13,7 @@ jobs:
1313

1414
build:
1515
runs-on: ubuntu-latest
16-
name: Java 11 CI
16+
name: Java 17 CI
1717
steps:
1818
- name: Check out repository code
1919
uses: actions/checkout@v2
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/setup-java@v2
2424
with:
2525
distribution: 'adopt'
26-
java-version: 11
26+
java-version: 17
2727
- name: Cache Maven packages
2828
uses: actions/cache@v2
2929
with:
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/setup-java@v2
4848
with:
4949
distribution: 'adopt'
50-
java-version: '11'
50+
java-version: '17'
5151
- name: Cache Maven packages
5252
uses: actions/cache@v2
5353
with:

0 commit comments

Comments
 (0)