From 563782da5b410c411c487ffe4a6441c54cc7ae89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 06:02:43 +0000 Subject: [PATCH] Bump actions/download-artifact from 6 to 7 Bumps [actions/download-artifact](https://github.com/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/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... 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 ca8e47e..01316f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -207,28 +207,28 @@ jobs: - docker-build steps: - name: Download backend digests - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: ${{ runner.temp }}/backend-digests pattern: backend-digests-* merge-multiple: true - name: Download cron digests - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: ${{ runner.temp }}/cron-digests pattern: cron-digests-* merge-multiple: true - name: Download runner digests - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: ${{ runner.temp }}/runner-digests pattern: runner-digests-* merge-multiple: true - name: Download dummy runner digests - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: ${{ runner.temp }}/dummy-runner-digests pattern: dummy-runner-digests-*