Skip to content

Commit b2ca4e6

Browse files
committed
update 2024-03-22T17:09:37
1 parent 8d2a0f3 commit b2ca4e6

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/allure-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/[email protected]
1616

1717
- name: Set up Java 21
18-
uses: actions/setup-java@v4.0.0
18+
uses: actions/setup-java@v4.2.1
1919
with:
2020
java-version: 21
2121
cache: 'gradle'
@@ -34,7 +34,7 @@ jobs:
3434
path: gh-pages
3535

3636
- name: Generate Allure Report
37-
uses: simple-elf/allure-report-action@v1.7
37+
uses: simple-elf/allure-report-action@v1.9
3838
if: always()
3939
with:
4040
allure_results: build/allure-results

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ plugins {
33
}
44

55
tasks.withType(Wrapper::class) {
6-
gradleVersion = "8.5"
6+
gradleVersion = "8.6"
77
}
88

99
group = "com.example.junit4"
1010
version = "1.0-SNAPSHOT"
1111

1212
val allureVersion = "2.25.0"
1313
val aspectJVersion = "1.9.21"
14-
val kotlinVersion = "1.9.22"
14+
val kotlinVersion = "1.9.23"
1515

1616
java {
1717
toolchain {
@@ -46,7 +46,7 @@ dependencies {
4646

4747
testImplementation("junit:junit:4.13.2")
4848

49-
testImplementation("org.slf4j:slf4j-simple:2.0.9")
49+
testImplementation("org.slf4j:slf4j-simple:2.0.12")
5050
}
5151

5252
repositories {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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

Lines changed: 10 additions & 10 deletions
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)