From b4746f602bb55836a107904c5ca4377f35de3fbd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 19:54:19 +0000 Subject: [PATCH] chore(deps): bump docker/build-push-action from 6.12.0 to 6.13.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.12.0 to 6.13.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6.12.0...v6.13.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor ... 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 84c0617e3f..0f2af28435 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.12.0 + uses: docker/build-push-action@v6.13.0 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.12.0 + uses: docker/build-push-action@v6.13.0 with: push: true tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest,${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.get-version.outputs.version }}