Skip to content

Commit c297ac3

Browse files
committed
Fixed usage of deprecated field in CI.
1 parent 7bed827 commit c297ac3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: EnricoMi/publish-unit-test-result-action@v2
6262
with:
6363
check_name: Tests (Linux ${{ matrix.lib_type }} Debug)
64-
junit_files: "${{ env.test_results_location }}/*.xml"
64+
files: "${{ env.test_results_location }}/*.xml"
6565
- name: Clear test results
6666
run: rm *.xml
6767
working-directory: "${{ env.test_results_location }}"
@@ -82,7 +82,7 @@ jobs:
8282
uses: EnricoMi/publish-unit-test-result-action@v2
8383
with:
8484
check_name: Tests (Linux ${{ matrix.lib_type }} Release)
85-
junit_files: "${{ env.test_results_location }}/*.xml"
85+
files: "${{ env.test_results_location }}/*.xml"
8686
Mac:
8787
runs-on: macos-latest
8888
strategy:
@@ -126,7 +126,7 @@ jobs:
126126
uses: EnricoMi/publish-unit-test-result-action/macos@v2
127127
with:
128128
check_name: Tests (Mac ${{ matrix.lib_type }} Debug)
129-
junit_files: "${{ env.test_results_location }}/*.xml"
129+
files: "${{ env.test_results_location }}/*.xml"
130130
- name: Clear test results
131131
run: rm *.xml
132132
working-directory: "${{ env.test_results_location }}"
@@ -147,7 +147,7 @@ jobs:
147147
uses: EnricoMi/publish-unit-test-result-action/macos@v2
148148
with:
149149
check_name: Tests (Mac ${{ matrix.lib_type }} Release)
150-
junit_files: "${{ env.test_results_location }}/*.xml"
150+
files: "${{ env.test_results_location }}/*.xml"
151151
Windows:
152152
runs-on: windows-2025
153153
strategy:
@@ -210,7 +210,7 @@ jobs:
210210
uses: EnricoMi/publish-unit-test-result-action/windows@v2
211211
with:
212212
check_name: Tests (Windows ${{ matrix.arch }} ${{ matrix.lib_type }} Debug)
213-
junit_files: "${{ env.test_results_location }}/*.xml"
213+
files: "${{ env.test_results_location }}/*.xml"
214214
- name: Clear test results
215215
run: rm *.xml
216216
shell: bash
@@ -228,6 +228,6 @@ jobs:
228228
uses: EnricoMi/publish-unit-test-result-action/windows@v2
229229
with:
230230
check_name: Tests (Windows ${{ matrix.arch }} ${{ matrix.lib_type }} Release)
231-
junit_files: "${{ env.test_results_location }}/*.xml"
231+
files: "${{ env.test_results_location }}/*.xml"
232232

233233
# vim: ts=2 sts=2 sw=2 et

0 commit comments

Comments
 (0)