From e61851a26eb9e107525808b0077d1128ca4cec77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 15:59:58 +0000 Subject: [PATCH] chore(deps): bump docker/build-push-action from 6 to 7 Bumps [docker/build-push-action](https://github.com/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) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b304e65..95ce6be 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push authz image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: services/authz/Dockerfile @@ -38,7 +38,7 @@ jobs: tags: ghcr.io/${{ github.repository }}/authz:latest - name: Build and push inventory image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: services/inventory/Dockerfile @@ -46,7 +46,7 @@ jobs: tags: ghcr.io/${{ github.repository }}/inventory:latest - name: Build and push app image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: app/Dockerfile