Skip to content

Commit 7d31664

Browse files
committed
actions: fix "Publish Test Report"
1 parent 81f6106 commit 7d31664

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/publish-test-results.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@ on:
66
types: [ completed ]
77

88
permissions:
9+
actions: read
10+
contents: read
911
checks: write
1012

1113
jobs:
1214
checks:
1315
runs-on: ubuntu-latest
1416
steps:
1517
- name: Download Test Report
16-
uses: actions/download-artifact@v4
18+
uses: dawidd6/action-download-artifact@v9
1719
with:
1820
name: junit-test-results
19-
run-id: ${{ github.event.workflow_run.id }}
21+
run_id: ${{ github.event.workflow_run.id }}
2022

2123
- name: Publish Test Report
2224
uses: mikepenz/action-junit-report@v5

0 commit comments

Comments
 (0)