From 32c5e1f15060fbc956548e1b8ade29bc4879b659 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:07:35 +0000 Subject: [PATCH] Bump the github-actions-updates group with 3 updates Bumps the github-actions-updates group with 3 updates: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [docker/login-action](https://github.com/docker/login-action). 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) 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/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) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates ... 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 95f4e54..048bdea 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -51,11 +51,11 @@ jobs: uses: actions/checkout@v6 - name: set up docker buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: build only (PR validation) if: github.event_name == 'pull_request' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ${{ matrix.image.context }} file: ${{ matrix.image.dockerfile }} @@ -64,7 +64,7 @@ jobs: - name: login to ghcr.io if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} @@ -72,7 +72,7 @@ jobs: - name: login to dockerhub if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ github.actor }} password: ${{ secrets.DOCKER_HUB_TOKEN }} @@ -80,7 +80,7 @@ jobs: - name: build and push to ghcr.io if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) id: build-ghcr - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ${{ matrix.image.context }} file: ${{ matrix.image.dockerfile }} @@ -90,7 +90,7 @@ jobs: - name: build and push to dockerhub if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) id: build-dockerhub - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ${{ matrix.image.context }} file: ${{ matrix.image.dockerfile }} @@ -158,17 +158,17 @@ jobs: echo "All digests present" - name: set up docker buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: login to ghcr.io - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUBPKG }} - name: login to dockerhub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ github.actor }} password: ${{ secrets.DOCKER_HUB_TOKEN }}