From f5d377b6d19c536dec3377f5c1fb0f8594574aa1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 18:58:10 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v4 --- .github/workflows/ci-cd.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index f3416eac765..b0f95934997 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -43,7 +43,7 @@ jobs: run: | npm run test:lint -- --quiet --output-file test-results/eslint/results.xml --format junit - name: Store Lint Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: lint-output path: ./test-results/* @@ -85,7 +85,7 @@ jobs: - name: Run Unit Tests run: npm run test:unit -- --reporters="default" --reporters="jest-junit" --coverage --coverageReporters=text --coverageReporters=lcov --maxWorkers="2" - name: Store Unit Test Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: unit-test-output path: ./test-results/* @@ -136,12 +136,12 @@ jobs: ./dist key: ${{ runner.os }}-dist-${{ hashFiles('package-lock.json') }} - name: Store Build Output - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-output path: ./build - name: Store Dist Output - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist-output path: ./dist @@ -179,7 +179,7 @@ jobs: - name: Run Integration Tests run: npm run test:integration -- --reporters="default" --reporters="jest-junit" - name: Store Integration Test Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: integration-test-output path: ./test-results/*