File tree Expand file tree Collapse file tree 3 files changed +13
-17
lines changed Expand file tree Collapse file tree 3 files changed +13
-17
lines changed Original file line number Diff line number Diff line change @@ -13,21 +13,19 @@ jobs:
1313 jre : [17]
1414 os : [ubuntu-latest, windows-latest]
1515 include :
16- - jre : 11
16+ - jre : 21
1717 os : ubuntu-latest
1818 runs-on : ${{ matrix.os }}
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v3
21+ uses : actions/checkout@v4
2222 - name : Install JDK ${{ matrix.jre }}
23- uses : actions/setup-java@v3
23+ uses : actions/setup-java@v4
2424 with :
2525 distribution : " temurin"
2626 java-version : ${{ matrix.jre }}
2727 - name : gradle caching
28- uses : gradle/gradle-build-action@v2
29- with :
30- gradle-home-cache-cleanup : true
28+ uses : gradle/actions/setup-gradle@v4
3129 - name : git fetch origin main
3230 run : git fetch origin main
3331 - name : gradlew build
@@ -37,10 +35,10 @@ jobs:
3735 Xvfb :99 &
3836 export DISPLAY=:99
3937 fi
40- ./gradlew build
38+ ./gradlew build --no-configuration-cache
4139 shell : bash
4240 - name : junit result
43- uses : mikepenz/action-junit-report@v3
41+ uses : mikepenz/action-junit-report@v4
4442 if : always() # always run even if the previous step fails
4543 with :
4644 check_name : JUnit ${{ matrix.jre }} ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -30,16 +30,14 @@ jobs:
3030 ORG_GRADLE_PROJECT_gpg_passphrase : ${{ secrets.GPG_PASSPHRASE }}
3131 ORG_GRADLE_PROJECT_gpg_key64 : ${{ secrets.GPG_KEY64 }}
3232 steps :
33- - uses : actions/checkout@v3
34- - name : jdk 11
35- uses : actions/setup-java@v3
33+ - uses : actions/checkout@v4
34+ - name : jdk 17
35+ uses : actions/setup-java@v4
3636 with :
37- java-version : 11
37+ java-version : 17
3838 distribution : ' temurin'
3939 - name : gradle caching
40- uses : gradle/gradle-build-action@v2
41- with :
42- gradle-home-cache-cleanup : true
40+ uses : gradle/actions/setup-gradle@v4
4341 - name : git fetch origin main
4442 run : git fetch origin main
4543 - name : publish all
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ maven_desc=DurianSwt - Reactive utilities and fluent builders for SWT
55osgi_symbolic_name =com.diffplug.durian.swt
66osgi_export =com.diffplug.common.swt.*
77
8- ver_java =8
9- kotlin_jvmTarget =1.8
8+ ver_java =17
9+ kotlin_jvmTarget =17
1010
1111# Build requirements
1212VER_FINDBUGS =3.0.1
You can’t perform that action at this time.
0 commit comments