From ae87b63cd60624304b798bf7340e5f5dbec41c65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 16:56:04 +0000 Subject: [PATCH] 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-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86e01f8..7bfa19e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,7 +89,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Build only (on commits) - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 if: ${{ github.ref_type != 'tag' }} with: push: false @@ -103,7 +103,7 @@ jobs: password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Build and push (on tag) - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 if: ${{ github.ref_type == 'tag' }} with: push: true