From 5d4e4f625cdca92c10193d2e9de0bb13f1474fe4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 07:08:04 +0000 Subject: [PATCH] Bump the all-dependencies group with 2 updates Bumps the all-dependencies group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/unittest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 47d2b66..c78be7e 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -34,13 +34,13 @@ jobs: - name: run unit test run: docker compose run -e TEST_TARGET="${{ matrix.test_target }}" unittest-tre-server - run: mv cov/.coverage cov/.coverage-${{ strategy.job-index }} - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: .coverage-${{ strategy.job-index }} path: cov/.coverage-${{ strategy.job-index }} include-hidden-files: true - run: mv cov/pytest.xml cov/pytest-${{ strategy.job-index }}.xml - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: pytest-${{ strategy.job-index }} path: cov/pytest-${{ strategy.job-index }}.xml @@ -61,7 +61,7 @@ jobs: run: | sudo chown runner:docker /home/runner/work/TRE-server/TRE-server/cov sudo chmod 777 /home/runner/work/TRE-server/TRE-server/cov - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: pattern: '.coverage-*' path: cov/ @@ -70,7 +70,7 @@ jobs: run: docker compose run -w /app/TRE-server/cov unittest-tre-server bash --login -c 'uv run coverage combine .coverage-*' - name: generate coverage xml file run: docker compose run -w /app/TRE-server unittest-tre-server bash --login -c 'uv run coverage xml --data-file=cov/.coverage -o cov/coverage.xml' - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: pattern: 'pytest-*' path: cov/