From 473a12c69c233df9ff71a02da8046977f2789795 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 08:14:43 +0000 Subject: [PATCH 1/2] Bump org.wildfly.plugins:wildfly-maven-plugin Bumps [org.wildfly.plugins:wildfly-maven-plugin](https://github.com/wildfly/wildfly-maven-plugin) from 5.0.0.Final to 5.0.1.Final. - [Release notes](https://github.com/wildfly/wildfly-maven-plugin/releases) - [Commits](https://github.com/wildfly/wildfly-maven-plugin/compare/5.0.0.Final...5.0.1.Final) --- updated-dependencies: - dependency-name: org.wildfly.plugins:wildfly-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- testsuite/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/pom.xml b/testsuite/pom.xml index adbf78f8..3a0f3269 100644 --- a/testsuite/pom.xml +++ b/testsuite/pom.xml @@ -36,7 +36,7 @@ 6.0.3.Final 25.0.1.Final - 5.0.0.Final + 5.0.1.Final From 2ffb18dba8c4e4e86adffed178a71e3aebe94114 Mon Sep 17 00:00:00 2001 From: Sergey Beryozkin Date: Sun, 15 Sep 2024 20:27:32 +0100 Subject: [PATCH 2/2] Update build.yml to use action@v4 --- .github/workflows/build.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cf75129..0882ab52 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,21 +28,24 @@ jobs: name: build with jdk ${{matrix.java}} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 name: checkout - - uses: actions/setup-java@v1 + - uses: actions/setup-java@v4 name: set up jdk ${{matrix.java}} with: + distribution: 'temurin' java-version: ${{matrix.java}} + cache: 'maven' + cache-dependency-path: '**/pom.xml' - name: build with maven run: mvn -B formatter:validate verify --file pom.xml - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: tck-report with: - name: tck-report + name: tck-report-java-${{matrix.java}} path: testsuite/tck/target/surefire-reports build-windows: @@ -53,13 +56,16 @@ jobs: name: build with jdk ${{matrix.java}} windows steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 name: checkout - - uses: actions/setup-java@v1 + - uses: actions/setup-java@v4 name: set up jdk ${{matrix.java}} with: + distribution: 'temurin' java-version: ${{matrix.java}} + cache: 'maven' + cache-dependency-path: '**/pom.xml' - name: build with maven run: mvn -B formatter:validate verify --file pom.xml @@ -71,10 +77,10 @@ jobs: name: quality steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-java@v1 + - uses: actions/setup-java@v4 with: java-version: 17