Skip to content

Commit 195b04e

Browse files
committed
Fixed usage of deprecated field in CI.
1 parent b0ed8cc commit 195b04e

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
@@ -68,7 +68,7 @@ jobs:
6868
uses: EnricoMi/publish-unit-test-result-action@v2
6969
with:
7070
check_name: Tests (Linux ${{ matrix.lib_type }} Debug)
71-
junit_files: "${{ env.test_results_location }}/*.xml"
71+
files: "${{ env.test_results_location }}/*.xml"
7272
- name: Clear test results
7373
run: rm *.xml
7474
working-directory: "${{ env.test_results_location }}"
@@ -89,7 +89,7 @@ jobs:
8989
uses: EnricoMi/publish-unit-test-result-action@v2
9090
with:
9191
check_name: Tests (Linux ${{ matrix.lib_type }} Release)
92-
junit_files: "${{ env.test_results_location }}/*.xml"
92+
files: "${{ env.test_results_location }}/*.xml"
9393
Mac:
9494
runs-on: macos-latest
9595
strategy:
@@ -136,7 +136,7 @@ jobs:
136136
uses: EnricoMi/publish-unit-test-result-action/macos@v2
137137
with:
138138
check_name: Tests (Mac ${{ matrix.lib_type }} Debug)
139-
junit_files: "${{ env.test_results_location }}/*.xml"
139+
files: "${{ env.test_results_location }}/*.xml"
140140
- name: Clear test results
141141
run: rm *.xml
142142
working-directory: "${{ env.test_results_location }}"
@@ -157,7 +157,7 @@ jobs:
157157
uses: EnricoMi/publish-unit-test-result-action/macos@v2
158158
with:
159159
check_name: Tests (Mac ${{ matrix.lib_type }} Release)
160-
junit_files: "${{ env.test_results_location }}/*.xml"
160+
files: "${{ env.test_results_location }}/*.xml"
161161
Windows:
162162
runs-on: windows-2025
163163
strategy:
@@ -236,7 +236,7 @@ jobs:
236236
uses: EnricoMi/publish-unit-test-result-action/windows@v2
237237
with:
238238
check_name: Tests (Windows ${{ matrix.arch }} ${{ matrix.lib_type }} Debug)
239-
junit_files: "${{ env.test_results_location }}/*.xml"
239+
files: "${{ env.test_results_location }}/*.xml"
240240
- name: Clear test results
241241
run: rm *.xml
242242
shell: bash
@@ -255,6 +255,6 @@ jobs:
255255
uses: EnricoMi/publish-unit-test-result-action/windows@v2
256256
with:
257257
check_name: Tests (Windows ${{ matrix.arch }} ${{ matrix.lib_type }} Release)
258-
junit_files: "${{ env.test_results_location }}/*.xml"
258+
files: "${{ env.test_results_location }}/*.xml"
259259

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

0 commit comments

Comments
 (0)