From 563642d6add9c40e6a501be811734350e305a29b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:44:13 +0000 Subject: [PATCH 1/2] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 408ec07..d35ea8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 id: download with: name: "coverage" From 2e92187d44590a58246ca649924e5a5262fe5240 Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Wed, 4 Sep 2024 11:09:35 +0200 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d35ea8a..abf53c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,10 +47,11 @@ jobs: COVERAGE_FILE: ".coverage.${{ matrix.python-version }}" - name: Store coverage file - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.python-version }} path: .coverage.${{ matrix.python-version }} + include-hidden-files: true report-status: name: success @@ -68,10 +69,11 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v4 id: download with: - name: "coverage" + name: "coverage-*" + merge-multiple: true - name: Display coverage uses: ewjoachim/python-coverage-comment-action@v3