Skip to content

Commit 9b2d27f

Browse files
committed
Updated Gradle workflow to use JDK 21
1 parent aa2c2ee commit 9b2d27f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/gradle-all.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ name: 'Gradle Build (non-master branch)'
22

33
on:
44
push:
5-
branches-ignore:
5+
branches-ignore:
66
- 'master'
7-
7+
88
jobs:
99
compile-and-test:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: 'Checkout'
1313
uses: actions/checkout@v2
14-
- name: 'Set up JDK 11'
14+
- name: 'Set up JDK 21'
1515
uses: actions/setup-java@v1
1616
with:
17-
java-version: 11
17+
java-version: 21
1818
- name: 'Grant execute permission for gradlew'
1919
run: chmod +x gradlew
2020
- name: 'Gradle: compile and run unit tests'

0 commit comments

Comments
 (0)