From 20db5c4022cd4aeedba68f2aa8cca707eecbf96e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 17:22:12 +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 48e0c48..bc04ee7 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 @@ -39,7 +39,7 @@ jobs: ghcr.io/${{ github.repository }}/authz:sha-${{ github.sha }} - name: Build and push inventory image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: services/inventory/Dockerfile @@ -48,7 +48,7 @@ jobs: ghcr.io/${{ github.repository }}/inventory:sha-${{ github.sha }} - name: Build and push app image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: app/Dockerfile