From d9eed1803274c653a42490fa89dd7225c43bf7f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Dec 2025 12:26:36 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' 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 4214578..154029a 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@v5 + uses: actions/upload-artifact@v6 with: name: coverage-${{ matrix.os }} path: | @@ -245,7 +245,7 @@ jobs: fi - name: Upload Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: build-${{ runner.os }} path: artifacts/ @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@v6 - name: Download coverage artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 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@v6 + uses: actions/download-artifact@v7 with: name: build-Windows path: build-Windows - name: Download build artifact (Linux) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: build-Linux path: build-Linux - name: Download build artifact (macOS) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: build-macOS path: build-macOS