From 4532254390559285a74f1da50c38322119f41086 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 03:21:56 +0000 Subject: [PATCH] Dependabot (build-docker-image): Bump the gh-actions group across 1 directory with 3 updates Bumps the gh-actions group with 3 updates in the /build-docker-image directory: [docker/login-action](https://github.com/docker/login-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action). Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3...v4) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] --- build-docker-image/action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-docker-image/action.yml b/build-docker-image/action.yml index 4f149d6..64da492 100644 --- a/build-docker-image/action.yml +++ b/build-docker-image/action.yml @@ -59,7 +59,7 @@ runs: "DOCKER_REPOSITORY=$DockerRepository" | Out-File -FilePath $env:GITHUB_ENV -Append - name: Login to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -152,7 +152,7 @@ runs: fi - name: Build docker image using inline cache - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: ${{ ( inputs.reuse-cache == 'true' && inputs.max-cache == 'false' ) }} with: tags: | @@ -173,7 +173,7 @@ runs: DOCKER_BUILD_RECORD_UPLOAD: false - name: Build docker image without reusing inline cache - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: ${{ ( inputs.reuse-cache == 'false' && inputs.max-cache == 'false' ) }} with: tags: | @@ -190,10 +190,10 @@ runs: - name: Set up Docker Buildx if: ${{ inputs.max-cache == 'true' }} - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Build docker image using max cache - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: ${{ ( inputs.reuse-cache == 'true' && inputs.max-cache == 'true' ) }} with: tags: | @@ -215,7 +215,7 @@ runs: DOCKER_BUILD_RECORD_UPLOAD: false - name: Build docker image without reusing max cache - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: ${{ ( inputs.reuse-cache == 'false' && inputs.max-cache == 'true' ) }} with: tags: |