From 62b22d48d9f4818f4e966328a64aec72835d9cdc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Oct 2025 14:01:01 +0000 Subject: [PATCH] build(deps): bump the github-actions group with 2 updates Bumps the github-actions 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 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b7560b..afeab22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -227,7 +227,7 @@ jobs: if: >- always() && (steps.test_report.outcome == 'success') - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage-${{ matrix.os }} path: | @@ -245,7 +245,7 @@ jobs: fi - name: Upload Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-${{ runner.os }} path: artifacts/ @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@v5 - name: Download coverage artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 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@v5 + uses: actions/download-artifact@v6 with: name: build-Windows path: build-Windows - name: Download build artifact (Linux) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-Linux path: build-Linux - name: Download build artifact (macOS) - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-macOS path: build-macOS