From b286ba85c385f83f133dee63cffe22513464f951 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Aug 2025 08:50:36 +0000 Subject: [PATCH] build(deps): bump actions/download-artifact in the github-actions group Bumps the github-actions group with 1 update: [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19deffe..f1ddbcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@v4 - name: Download coverage artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: coverage-${{ matrix.build_os }} path: _coverage @@ -315,19 +315,19 @@ jobs: runs-on: ubuntu-latest steps: - name: Download build artifact (Windows) - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: build-Windows path: build-Windows - name: Download build artifact (Linux) - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: build-Linux path: build-Linux - name: Download build artifact (macOS) - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: build-macOS path: build-macOS