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 EnricoMi/publish-unit-test-result-action from 2.17.1 to 2.18.0 in /actions/run-build-process #83

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions actions/run-build-process/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,14 +200,14 @@ runs:
header: ${{ inputs.runsOn }}
# Conditional test result publishing as we can't use the docker version of the action on Windows
- name: Publish Test Results (Linux)
uses: EnricoMi/publish-unit-test-result-action@82082dac68ad6a19d980f8ce817e108b9f496c2a # v2.17.1
uses: EnricoMi/publish-unit-test-result-action@170bf24d20d201b842d7a52403b73ed297e6645b # v2.18.0
if: always() && steps.check_os.outputs.RUNNEROS == 'linux'
with:
nunit_files: "*TestResults.xml" # produced by Pester
trx_files: "**/test-results_*.trx" # produced by dotnet test
junit_files: "**/*-test-results.xml" # produced by PyTest & Behave
- name: Publish Test Results (Windows)
uses: EnricoMi/publish-unit-test-result-action/windows@82082dac68ad6a19d980f8ce817e108b9f496c2a # v2.17.1
uses: EnricoMi/publish-unit-test-result-action/windows@170bf24d20d201b842d7a52403b73ed297e6645b # v2.18.0
if: always() && steps.check_os.outputs.RUNNEROS == 'windows'
with:
nunit_files: "*TestResults.xml" # produced by Pester
Expand Down
Loading