From d8cf7827b98f6d2b6d5a27a2c95847840b2d5f87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:35:41 +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/devops.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/devops.yml b/.github/workflows/devops.yml index e6644a6..9d0940d 100644 --- a/.github/workflows/devops.yml +++ b/.github/workflows/devops.yml @@ -155,7 +155,7 @@ jobs: # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: tags: | ${{ env.IMAGE_NAME }} @@ -216,7 +216,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image if: ${{ github.ref == 'refs/heads/main' }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: ${{ github.event_name != 'pull_request' }} tags: | @@ -230,7 +230,7 @@ jobs: run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV - name: Build and push Docker image if: ${{ startsWith(github.ref, 'refs/tags/v') }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: ${{ github.event_name != 'pull_request' }} tags: |