From 0644d5b0995aa2b5734e7b7b7d1dffbbf3204e7e Mon Sep 17 00:00:00 2001 From: James Blair Date: Wed, 20 Dec 2023 13:55:11 +1300 Subject: [PATCH] Ensure matrix workflows use unique names for uploaded artifacts. There are breaking changes in v4.0 of the upload artifact action which mean name must be unique https://github.com/actions/upload-artifact#breaking-changes. Signed-off-by: James Blair --- .github/workflows/tests-template.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests-template.yaml b/.github/workflows/tests-template.yaml index 1560aa5e6..178a3dd7f 100644 --- a/.github/workflows/tests-template.yaml +++ b/.github/workflows/tests-template.yaml @@ -71,4 +71,5 @@ jobs: - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 if: always() with: + name: "${{ matrix.target }}" path: ./**/junit_*.xml