Skip to content

Commit c92891c

Browse files
committed
update 2024-11-06T16:52:17
1 parent 6f65bb1 commit c92891c

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

.github/workflows/allure-report.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Clone repository
15-
uses: actions/checkout@v4.1.1
15+
uses: actions/checkout@v4.2.2
1616

1717
- name: Set up Java 21
18-
uses: actions/setup-java@v4.2.1
18+
uses: actions/setup-java@v4.5.0
1919
with:
2020
java-version: 21
2121
cache: 'gradle'
@@ -26,23 +26,23 @@ jobs:
2626
continue-on-error: true
2727

2828
- name: Setup Allure History
29-
uses: actions/checkout@v4.1.1
29+
uses: actions/checkout@v4.2.2
3030
if: always()
3131
continue-on-error: true
3232
with:
3333
ref: gh-pages
3434
path: gh-pages
3535

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

4343
- name: Publish Allure Report
4444
if: always()
45-
uses: peaceiris/actions-gh-pages@v3.9.3
45+
uses: peaceiris/actions-gh-pages@v4.0.0
4646
with:
4747
github_token: ${{ secrets.GITHUB_TOKEN }}
4848
publish_branch: gh-pages

build.gradle.kts

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

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

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

12-
val allureVersion = "2.26.0"
12+
val allureVersion = "2.29.0"
1313
val aspectJVersion = "1.9.22"
1414

1515
java {
@@ -45,7 +45,7 @@ dependencies {
4545

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

48-
testImplementation("org.slf4j:slf4j-simple:2.0.12")
48+
testImplementation("org.slf4j:slf4j-simple:2.0.16")
4949
}
5050

5151
repositories {

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

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.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -55,7 +57,7 @@
5557
# Darwin, MinGW, and NonStop.
5658
#
5759
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5961
# within the Gradle project.
6062
#
6163
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)