Skip to content

Commit c4505c3

Browse files
committed
Bump to Java 17
1 parent f515db1 commit c4505c3

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Java 11
2626
uses: actions/setup-java@v1
2727
with:
28-
java-version: '11.0.9'
28+
java-version: '17'
2929
# Populates ARTIFACTORY_USERNAME and ARTIFACTORY_API_KEY with
3030
# temporary username/password for publishing to packages.atlassian.com
3131
- name: Get publish token
@@ -58,5 +58,5 @@ jobs:
5858
with:
5959
files: '**/build/test-results/test/TEST-*.xml'
6060

61-
- name: debug files
61+
- name: Debug files
6262
run: find ./ -type f -name "*.jar" -ls

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
- name: Set up Java 11
2222
uses: actions/setup-java@v1
2323
with:
24-
java-version: '11.0.9'
24+
java-version: '17'
2525

26-
- name: build and test
26+
- name: Build and test
2727
run: ./gradlew assemble --info && ./gradlew check --info
2828
- uses: actions/upload-artifact@v4
2929
if: failure()

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
- name: Set up Java 11
1919
uses: actions/setup-java@v1
2020
with:
21-
java-version: '11.0.9'
22-
- name: build test and publish
21+
java-version: '17'
22+
- name: Build test and publish
2323
run: ./gradlew assemble && ./gradlew check --info

0 commit comments

Comments
 (0)