From 874a9d7a735e047051598d45f61cec860907fc93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 10:14:14 +0000 Subject: [PATCH 1/2] Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b863b48..7c6b622 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -307,7 +307,7 @@ jobs: -o console_output_style=count \ tests - name: Upload coverage artifact - uses: actions/upload-artifact@v4.3.6 + uses: actions/upload-artifact@v5 with: name: coverage-${{ matrix.python-version }} path: .coverage diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 993fa17..39801af 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -63,7 +63,7 @@ jobs: run: >- python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: python-package-distributions path: dist/ From 3086ce228cc3f72813f1d72dd99485254efdab7a Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Wed, 29 Oct 2025 11:48:34 +0100 Subject: [PATCH 2/2] Include hidden directory --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7c6b622..793afdf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -307,10 +307,11 @@ jobs: -o console_output_style=count \ tests - name: Upload coverage artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v5.0.0 with: name: coverage-${{ matrix.python-version }} path: .coverage + include-hidden-files: true coverage: name: Process test coverage