From 35626477e78ca9f5304454a6d3e1cd4304da9fb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Feb 2023 01:02:23 +0000 Subject: [PATCH] github-action: bump docker/build-push-action from 3 to 4 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v3...v4) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-account.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-account.yml b/.github/workflows/ci-account.yml index ea20762..0b738af 100644 --- a/.github/workflows/ci-account.yml +++ b/.github/workflows/ci-account.yml @@ -68,14 +68,14 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build against builder - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: builder: ${{ steps.builder.outputs.name }} file: ${{ env.DOCKERFILE }} target: builder - name: Build against main and push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: builder: ${{ steps.main.outputs.name }} file: ${{ env.DOCKERFILE }}