From b66ffb7e35c8ac53edee4a7a370a384f5a739b62 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:59:42 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/SoftTesting.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/SoftTesting.yml b/.github/workflows/SoftTesting.yml index fc38c4b..faf342d 100644 --- a/.github/workflows/SoftTesting.yml +++ b/.github/workflows/SoftTesting.yml @@ -20,12 +20,12 @@ jobs: - name: Run Jest tests and generate coverage report run: npm test -- --coverage --coverageReporters="json-summary" --coverageReporters="json" - name: Archive coverage report (json-summary) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage-summary-report path: coverage/coverage-summary.json - name: Archive coverage report (json) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage-report path: coverage/coverage-final.json \ No newline at end of file