From ea39dc73a52ad474092907efc85a594c2bfdb6f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 15:17:41 +0000 Subject: [PATCH 1/2] build(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/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 151d4355..15b914e6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -61,7 +61,7 @@ jobs: mv .coverage .coverage.${{ matrix.python-version }}.${{ matrix.os }} - name: Store coverage files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage path: .coverage.${{ matrix.python-version }}.${{ matrix.os }} From be9209966265b843f64c947f3b021907209587e0 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Sat, 13 Jul 2024 18:30:25 +0300 Subject: [PATCH 2/2] workflows: fix upload-artifact@v4 --- .github/workflows/test.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 15b914e6..8f741b99 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -63,7 +63,7 @@ jobs: - name: Store coverage files uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.python-version }}-${{ matrix.os }} path: .coverage.${{ matrix.python-version }}.${{ matrix.os }} report-coverage: @@ -82,10 +82,11 @@ jobs: python-version: "3.12" - name: Download coverage files - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: coverage + pattern: coverage-* # download all the uploaded coverage reports path: coverage + merge-multiple: true # download them in the same folder - name: Install Hatch uses: pypa/hatch@install