From e6b83522a1726cdb9cb9b32ce9cf96e139935089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Tue, 19 Dec 2023 09:22:59 +0100 Subject: [PATCH] Use dedicated artifact names for uploads inside matrix The new version of upload-artifacts doesn't allow to use the same artifact name. --- .github/workflows/ci-js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-js.yml b/.github/workflows/ci-js.yml index 2581c5b914..d8b615b448 100644 --- a/.github/workflows/ci-js.yml +++ b/.github/workflows/ci-js.yml @@ -58,7 +58,7 @@ jobs: - name: Load Lint Results uses: actions/download-artifact@v4 with: - name: linting-report + name: linting-report-${{ matrix.node-version }} path: ${{ env.REPORT_DIR }} - name: Submit test coverage to codecov.io uses: codecov/codecov-action@v3 @@ -89,5 +89,5 @@ jobs: - name: Store Lint Results uses: actions/upload-artifact@v4 with: - name: linting-report + name: linting-report-${{ matrix.node-version }} path: ${{ env.REPORT_FILE }}