From 7ca858f0a8c42f39049d9be5e92915bf4c032514 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 19:04:10 +0000 Subject: [PATCH] chore(deps): bump docker/build-push-action from 6.6.0 to 6.6.1 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.6.0 to 6.6.1. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6.6.0...v6.6.1) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/docker-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 1044096ea7..47aa81a074 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -38,13 +38,13 @@ jobs: registry: ${{ env.REGISTRY }} - name: Push to GitHub Packages - Nightly if: github.ref == 'refs/heads/main' || github.event.inputs.tag == 'main' - uses: docker/build-push-action@v6.6.0 + uses: docker/build-push-action@v6.6.1 with: push: true tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly - name: Push to GitHub Packages - Release if: startsWith(github.ref, 'refs/tags/v') || startsWith(github.event.inputs.tag, 'v') - uses: docker/build-push-action@v6.6.0 + uses: docker/build-push-action@v6.6.1 with: push: true tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest,${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.get-version.outputs.version }}