From 3da6bcec7784c318836a46d86ee6dfb704c7bd9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 06:09:47 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20ci(deps):=20Bump=20the=20github-?= =?UTF-8?q?actions=20group=20with=202=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the github-actions group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index df89b04..aaadc61 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -160,7 +160,7 @@ jobs: run: pnpm test:coverage - name: Download previous coverage artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 continue-on-error: true with: name: test-coverage-{{ matrix.runs-on }} @@ -178,7 +178,7 @@ jobs: - name: Upload test coverage if: success() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: test-coverage-{{ matrix.runs-on }} path: coverage/ @@ -217,7 +217,7 @@ jobs: run: pnpm build - name: Upload build artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 continue-on-error: true with: name: build-artifacts-{{ matrix.runs-on }} @@ -255,7 +255,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 continue-on-error: true with: name: build-artifacts-{{ matrix.runs-on }}