From 38004fc4b6e4eb24207c245b86c2f2eea563428d Mon Sep 17 00:00:00 2001 From: Justin Stayton Date: Tue, 11 Feb 2025 16:45:49 -0500 Subject: [PATCH] Update actions/upload-artifact --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a171481..896adef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,12 +26,12 @@ jobs: - name: Run tests run: npm test -- --ci --coverage --runInBand - name: Upload test reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: test-reports + name: test-reports-${{ matrix.node-version }} path: test/reports - name: Upload test coverage - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: test-coverage + name: test-coverage-${{ matrix.node-version }} path: test/coverage