From fafae4d0cec534c5607eb0bd66101d0c1482763b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jun 2026 07:04:56 +0000 Subject: [PATCH] Bump the actions group with 7 updates Bumps the actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `6.0.3` | | [docker/setup-docker-action](https://github.com/docker/setup-docker-action) | `5.1.0` | `5.2.0` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `4.0.0` | `4.1.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `4.0.0` | `4.1.0` | | [docker/login-action](https://github.com/docker/login-action) | `4.1.0` | `4.2.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `6.0.0` | `6.1.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `7.1.0` | `7.2.0` | Updates `actions/checkout` from 6.0.2 to 6.0.3 - [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/v6.0.2...v6.0.3) Updates `docker/setup-docker-action` from 5.1.0 to 5.2.0 - [Release notes](https://github.com/docker/setup-docker-action/releases) - [Commits](https://github.com/docker/setup-docker-action/compare/v5.1.0...v5.2.0) Updates `docker/setup-qemu-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v4.0.0...v4.1.0) Updates `docker/setup-buildx-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v4.0.0...v4.1.0) Updates `docker/login-action` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4.1.0...v4.2.0) Updates `docker/metadata-action` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v6.0.0...v6.1.0) Updates `docker/build-push-action` from 7.1.0 to 7.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7.1.0...v7.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: docker/setup-docker-action dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/setup-qemu-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/login-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/metadata-action dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/build-push-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/docker.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1d7b871..f784248 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,25 +27,25 @@ jobs: # Checkout repository source code # https://github.com/actions/checkout - name: Checkout repository - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 # Install and configure Docker # https://github.com/docker/setup-docker-action - name: Set up Docker # Docker is already up and running on GitHub-hosted runners on Linux and Windows. if: runner.environment != 'github-hosted' - uses: docker/setup-docker-action@v5.1.0 + uses: docker/setup-docker-action@v5.2.0 # Add support for multi-platform builds with QEMU (optional) # https://github.com/docker/setup-qemu-action - name: Set up QEMU if: vars.DOCKER_PLATFORMS != '' - uses: docker/setup-qemu-action@v4.0.0 + uses: docker/setup-qemu-action@v4.1.0 # Configure Buildx builder # https://github.com/docker/setup-buildx-action - name: Set up Buildx - uses: docker/setup-buildx-action@v4.0.0 + uses: docker/setup-buildx-action@v4.1.0 with: # Optional custom BuildKit configuration buildkitd-config-inline: ${{ vars.BUILDX_CONFIG }} @@ -54,20 +54,20 @@ jobs: # https://github.com/docker/login-action - name: Login to Docker Hub if: vars.DOCKER_USERNAME != '' - uses: docker/login-action@v4.1.0 + uses: docker/login-action@v4.2.0 with: username: ${{ vars.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - name: Login to GitHub Registry (GHCR) if: vars.USE_GITHUB_REGISTRY == 'true' - uses: docker/login-action@v4.1.0 + uses: docker/login-action@v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to custom/private registry if: vars.DOCKER_REGISTRY != '' - uses: docker/login-action@v4.1.0 + uses: docker/login-action@v4.2.0 with: registry: ${{ vars.DOCKER_REGISTRY }} username: ${{ vars.DOCKER_REGISTRY_USERNAME }} @@ -77,7 +77,7 @@ jobs: # https://github.com/docker/metadata-action - name: Extract Docker metadata id: meta - uses: docker/metadata-action@v6.0.0 + uses: docker/metadata-action@v6.1.0 with: # Target image names images: | @@ -99,7 +99,7 @@ jobs: # Build and publish Docker image # https://github.com/docker/build-push-action - name: Build and push - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . push: true