Skip to content

Commit 8f3df6c

Browse files
committed
Add missing shell instruction
1 parent e50496d commit 8f3df6c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

merge-junit-reports/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ runs:
2727
using: composite
2828
steps:
2929
- name: Set up xmlstarlet
30+
shell: bash
3031
run: sudo apt update && sudo apt install -y xmlstarlet
3132

3233
- name: Checkout JUnit reports
@@ -52,6 +53,7 @@ runs:
5253
- name: Clean up JUnit reports
5354
if: ${{ inputs.cleanup-junit-reports }}
5455
working-directory: junit-reports-artifact
56+
shell: bash
5557
run: |
5658
echo -n "JUnit report size before cleanup: "
5759
du -sch *.xml | tail -n 1 | cut -f1
@@ -64,9 +66,11 @@ runs:
6466
- name: Delete old JUnit reports
6567
if: ${{ inputs.delete-old-junit-reports }}
6668
working-directory: junit-reports
69+
shell: bash
6770
run: git rm *.xml || true
6871

6972
- name: Copy new JUnit reports
73+
shell: bash
7074
run: cp junit-reports-artifact/*.xml junit-reports/
7175

7276
- name: Update JUnit reports

0 commit comments

Comments
 (0)