Skip to content

Commit

Permalink
Bump mikepenz/action-junit-report from 4 to 5
Browse files Browse the repository at this point in the history
Bumps [mikepenz/action-junit-report](https://github.com/mikepenz/action-junit-report) from 4 to 5.
- [Release notes](https://github.com/mikepenz/action-junit-report/releases)
- [Commits](mikepenz/action-junit-report@v4...v5)

---
updated-dependencies:
- dependency-name: mikepenz/action-junit-report
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Nov 4, 2024
1 parent 6a0bb56 commit 0f6bc1e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit 0f6bc1e

Please sign in to comment.