Skip to content

Commit

Permalink
update 2024-11-06T16:53:20
Browse files Browse the repository at this point in the history
  • Loading branch information
qameta-ci committed Nov 6, 2024
1 parent 6d8df68 commit 1f47a23
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/allure-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.2.2

- name: Set up Java 21
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.5.0
with:
java-version: 21
cache: 'gradle'
Expand All @@ -26,23 +26,23 @@ jobs:
continue-on-error: true

- name: Setup Allure History
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.2.2
if: always()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages

- name: Generate Allure Report
uses: simple-elf/allure-report-action@v1.9
uses: simple-elf/allure-report-action@v1.11
if: always()
with:
allure_results: build/allure-results
allure_history: allure-history

- name: Publish Allure Report
if: always()
uses: peaceiris/actions-gh-pages@v3.9.3
uses: peaceiris/actions-gh-pages@v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

wrapper {
gradleVersion = '8.7'
gradleVersion = '8.10.2'
}

repositories {
Expand All @@ -13,9 +13,9 @@ repositories {
group = 'com.example.testng'
version = '1.0-SNAPSHOT'

def allureVersion = '2.26.0'
def allureVersion = '2.29.0'
def aspectJVersion = '1.9.22'
def kotlinVersion = '1.9.23'
def kotlinVersion = '1.9.25'

java {
toolchain {
Expand All @@ -38,12 +38,12 @@ configurations {
dependencies {
agent "org.aspectj:aspectjweaver:$aspectJVersion"

testImplementation "org.testng:testng:7.9.0"
testImplementation "org.testng:testng:7.10.2"

testImplementation platform("io.qameta.allure:allure-bom:$allureVersion")
testImplementation "io.qameta.allure:allure-testng"

testImplementation "org.slf4j:slf4j-simple:2.0.12"
testImplementation "org.slf4j:slf4j-simple:2.0.16"
}

test {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
7 changes: 5 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

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

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 2 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
Expand Down

0 comments on commit 1f47a23

Please sign in to comment.