Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump mikepenz/action-junit-report from 4 to 5 #3713

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading