Skip to content

Commit b409dcc

Browse files
committed
Update dependencies
1 parent a5cb243 commit b409dcc

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: sudo apt-get install libplist-dev libimobiledevice-dev libirecovery-1.0-dev
2222
if: runner.os == 'Linux'
2323
- name: Gradle build
24-
uses: gradle/gradle-build-action@v2
24+
uses: gradle/actions/setup-gradle@v3
2525
with:
2626
arguments: build --no-daemon --scan
2727
dependency-graph: generate-and-submit
@@ -32,7 +32,7 @@ jobs:
3232
path: build/distributions/*
3333
- name: Upload reports on failure
3434
if: ${{ failure() }}
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: failure-${{ runner.os }}
3838
path: build/reports/
@@ -43,7 +43,7 @@ jobs:
4343
if: "startsWith(github.event.head_commit.message, 'Release')"
4444
steps:
4545
- name: Get artifacts
46-
uses: actions/download-artifact@v3
46+
uses: actions/download-artifact@v4
4747
- name: Get version from commit
4848
run: echo "VERSION=$(echo ${{ github.event.commits[0].message }} | awk '{print $2}')" >> $GITHUB_ENV
4949
- name: Release public builds

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
2121

2222
plugins {
2323
id 'application'
24-
id 'com.github.ben-manes.versions' version '0.50.0'
24+
id 'com.github.ben-manes.versions' version '0.51.0'
2525
id 'org.beryx.jlink' version '3.0.1'
2626
id 'org.openjfx.javafxplugin' version '0.1.0'
2727

@@ -55,13 +55,13 @@ dependencies {
5555
implementation 'org.apache.commons:commons-compress:1.25.0'
5656
implementation 'info.picocli:picocli:4.7.5'
5757

58-
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
58+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
5959
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'
6161
}
6262

6363
javafx {
64-
version = '21.0.1'
64+
version = '21.0.2'
6565
modules = [ 'javafx.controls', 'javafx.fxml' ]
6666
}
6767

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
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
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew.bat

+10-10
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343
%JAVA_EXE% -version >NUL 2>&1
4444
if %ERRORLEVEL% equ 0 goto execute
4545

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
5151

5252
goto fail
5353

@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757

5858
if exist "%JAVA_EXE%" goto execute
5959

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
6565

6666
goto fail
6767

0 commit comments

Comments
 (0)