From 2baf5c8f8728f943aed3ea0c5c75046ff22ad278 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 06:43:27 +0000 Subject: [PATCH] Bump the github-actions-updates group with 2 updates Bumps the github-actions-updates 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 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) 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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 36cf123..95f4e54 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -108,7 +108,7 @@ jobs: - name: upload ghcr digest if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: digests-${{ matrix.image.name }}-ghcr-${{ matrix.platform.artifact }} path: /tmp/digests/${{ matrix.image.name }}/ghcr/* @@ -116,7 +116,7 @@ jobs: - name: upload dockerhub digest if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: digests-${{ matrix.image.name }}-dockerhub-${{ matrix.platform.artifact }} path: /tmp/digests/${{ matrix.image.name }}/dockerhub/* @@ -131,14 +131,14 @@ jobs: image: [app, buildgo, scratch] steps: - name: download ghcr digests - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: /tmp/digests/ghcr pattern: digests-${{ matrix.image }}-ghcr-* merge-multiple: true - name: download dockerhub digests - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: /tmp/digests/dockerhub pattern: digests-${{ matrix.image }}-dockerhub-*