File tree 4 files changed +18
-18
lines changed
4 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 21
21
run : sudo apt-get install libplist-dev libimobiledevice-dev libirecovery-1.0-dev
22
22
if : runner.os == 'Linux'
23
23
- name : Gradle build
24
- uses : gradle/gradle-build-action@v2
24
+ uses : gradle/actions/setup-gradle@v3
25
25
with :
26
26
arguments : build --no-daemon --scan
27
27
dependency-graph : generate-and-submit
32
32
path : build/distributions/*
33
33
- name : Upload reports on failure
34
34
if : ${{ failure() }}
35
- uses : actions/upload-artifact@v3
35
+ uses : actions/upload-artifact@v4
36
36
with :
37
37
name : failure-${{ runner.os }}
38
38
path : build/reports/
43
43
if : " startsWith(github.event.head_commit.message, 'Release')"
44
44
steps :
45
45
- name : Get artifacts
46
- uses : actions/download-artifact@v3
46
+ uses : actions/download-artifact@v4
47
47
- name : Get version from commit
48
48
run : echo "VERSION=$(echo ${{ github.event.commits[0].message }} | awk '{print $2}')" >> $GITHUB_ENV
49
49
- name : Release public builds
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
21
21
22
22
plugins {
23
23
id ' application'
24
- id ' com.github.ben-manes.versions' version ' 0.50 .0'
24
+ id ' com.github.ben-manes.versions' version ' 0.51 .0'
25
25
id ' org.beryx.jlink' version ' 3.0.1'
26
26
id ' org.openjfx.javafxplugin' version ' 0.1.0'
27
27
@@ -55,13 +55,13 @@ dependencies {
55
55
implementation ' org.apache.commons:commons-compress:1.25.0'
56
56
implementation ' info.picocli:picocli:4.7.5'
57
57
58
- testImplementation ' org.junit.jupiter:junit-jupiter:5.10.1 '
58
+ testImplementation ' org.junit.jupiter:junit-jupiter:5.10.2 '
59
59
testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
60
- testImplementation ' org.testfx:openjfx-monocle:jdk-12 .0.1+2 '
60
+ testImplementation ' org.testfx:openjfx-monocle:17 .0.10 '
61
61
}
62
62
63
63
javafx {
64
- version = ' 21.0.1 '
64
+ version = ' 21.0.2 '
65
65
modules = [ ' javafx.controls' , ' javafx.fxml' ]
66
66
}
67
67
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.5 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.6 -bin.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
43
43
%JAVA_EXE% -version > NUL 2 >& 1
44
44
if %ERRORLEVEL% equ 0 goto execute
45
45
46
- echo .
47
- echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48
- echo .
49
- echo Please set the JAVA_HOME variable in your environment to match the
50
- echo location of your Java installation.
46
+ echo . 1 >& 2
47
+ echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1 >& 2
48
+ echo . 1 >& 2
49
+ echo Please set the JAVA_HOME variable in your environment to match the 1 >& 2
50
+ echo location of your Java installation. 1 >& 2
51
51
52
52
goto fail
53
53
@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
57
57
58
58
if exist " %JAVA_EXE% " goto execute
59
59
60
- echo .
61
- echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62
- echo .
63
- echo Please set the JAVA_HOME variable in your environment to match the
64
- echo location of your Java installation.
60
+ echo . 1 >& 2
61
+ echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1 >& 2
62
+ echo . 1 >& 2
63
+ echo Please set the JAVA_HOME variable in your environment to match the 1 >& 2
64
+ echo location of your Java installation. 1 >& 2
65
65
66
66
goto fail
67
67
You can’t perform that action at this time.
0 commit comments