From 5bbd6e8c33db9d3ae36c2061f4383f3c3d9e25b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 16:11:08 -0800 Subject: [PATCH] Bump mikepenz/action-junit-report from 4 to 5 (#3713) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [mikepenz/action-junit-report](https://github.com/mikepenz/action-junit-report) from 4 to 5.
Release notes

Sourced from mikepenz/action-junit-report's releases.

v5

v5.0.0-rc01

🚀 Features

💬 Other

Contributors:

v5.0.0-b01

🚀 Features

Contributors:

v5.0.0-a03

🚀 Features

🐛 Fixes

📦 Dependencies

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mikepenz/action-junit-report&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 08067924d..9156fa367 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,7 +50,7 @@ jobs: - name: Scala 2.12 test run: ./sbt "++2.12; projectJVM/test" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -69,7 +69,7 @@ jobs: - name: Scala 2.13 test run: ./sbt "++2.13; projectJVM/test" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -89,7 +89,7 @@ jobs: # Test only Scala 3 supported projects run: ./sbt "++ 3; projectDotty/test; dottyTest/run" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -109,7 +109,7 @@ jobs: # Test only Scala 3 supported projects run: SCALA_VERSION=3.5.1 ./sbt "projectDotty/test; dottyTest/run" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -129,7 +129,7 @@ jobs: # Test only Scala 3 supported projects run: ./sbt "++ 3; projectDotty/test; dottyTest/run" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -153,7 +153,7 @@ jobs: - name: Integration Test run: ./sbt "++ 3; projectIt/test" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -177,7 +177,7 @@ jobs: - name: Scala.js test run: JVM_OPTS=-Xmx4g ./sbt "++ 2.12; projectJS/test" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -201,7 +201,7 @@ jobs: - name: Scala.js test run: JVM_OPTS=-Xmx4g ./sbt "++ 2.13; projectJS/test" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -225,7 +225,7 @@ jobs: - name: Scala.js test run: JVM_OPTS=-Xmx4g ./sbt "++ 3; projectJS/test" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -244,7 +244,7 @@ jobs: - name: Scala Native test run: JVM_OPTS=-Xmx4g ./sbt "++ 3; projectNative/test" - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml' @@ -267,7 +267,7 @@ jobs: run: ../sbt "++ 3; airspecNative/test" working-directory: ./airspec - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: always() # always run even if the previous step fails with: report_paths: '**/target/test-reports/TEST-*.xml'