From 67f94af4e9d391be2183f322f5c0b537f68b0635 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 06:04:57 +0000 Subject: [PATCH] Bump the github-actions-updates group with 3 updates Bumps the github-actions-updates group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/docker.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a7035e3..36cf123 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -48,7 +48,7 @@ jobs: runs-on: ${{ matrix.platform.runner }} steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: set up docker buildx uses: docker/setup-buildx-action@v3 @@ -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@v4 + uses: actions/upload-artifact@v6 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@v4 + uses: actions/upload-artifact@v6 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@v4 + uses: actions/download-artifact@v7 with: path: /tmp/digests/ghcr pattern: digests-${{ matrix.image }}-ghcr-* merge-multiple: true - name: download dockerhub digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: path: /tmp/digests/dockerhub pattern: digests-${{ matrix.image }}-dockerhub-*