From 0160abece9bb8e7a9ee461d36be71f4424c06267 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Jan 2023 11:09:54 +0000 Subject: [PATCH] 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/docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 57318b1..9e2cdbe 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -33,7 +33,7 @@ jobs: # build an image based on the current tag, passing the builds args - name: Build docker images - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: context: "${{ github.workspace }}" load: true @@ -60,7 +60,7 @@ jobs: # if test didn't fail us out of the job, upload the image with the tag its based on. # Should not increase build time since uses cache. https://github.com/docker/build-push-action/blob/master/docs/advanced/test-before-push.md#:~:text=Build%20time%20will%20not%20be%20increased%20with%20this%20workflow - name: Push docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: context: . push: true