From 9a6ec9d6aea4e2af0a236ebe66c6a08ce7dacfa2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 16:20:15 +0000 Subject: [PATCH] deps(ci): bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 597bd3a..6122d93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,7 +81,7 @@ jobs: # Build and push API image - name: Build and push API image id: api_push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ./api file: ./api/Dockerfile @@ -95,7 +95,7 @@ jobs: # Build and push Web image - name: Build and push Web image id: web_push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ./web file: ./web/Dockerfile @@ -109,7 +109,7 @@ jobs: # Build and push Worker image (same as API with different entrypoint) - name: Build and push Worker image id: worker_push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ./api file: ./api/Dockerfile