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/*