From 8221d0e3606401f578becc747a82650f750266dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 04:25:00 +0000 Subject: [PATCH] ci(deps): 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/test-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index b018512..b5c71ab 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -100,7 +100,7 @@ jobs: - name: ⚙️ Build project run: npm run build - name: 🪄 Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 continue-on-error: true id: docker-build-1 with: @@ -123,7 +123,7 @@ jobs: ghcr.io/${{ github.repository }}:cache-${{ hashFiles('package*.json') }} ghcr.io/${{ github.repository }}:next - name: 🪄 Build and push (second try) - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 continue-on-error: true if: steps.docker-build-1.outcome=='failure' id: docker-build-2 @@ -147,7 +147,7 @@ jobs: ghcr.io/${{ github.repository }}:cache-${{ hashFiles('package*.json') }} ghcr.io/${{ github.repository }}:next - name: 🪄 Build and push (third try) - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 if: steps.docker-build-2.outcome=='failure' continue-on-error: true id: docker-build-3 @@ -190,7 +190,7 @@ jobs: - name: 🔄 Push container to DockerHub id: docker-build-dh if: ${{ env.PUSH_TO_DOCKERHUB == 'true' }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . github-token: ${{ secrets.GITHUB_TOKEN }}