From 0feacf1776434989c98e1cc305eaff8ad79750f2 Mon Sep 17 00:00:00 2001 From: Bowen Liang Date: Fri, 18 Oct 2024 21:32:16 +0800 Subject: [PATCH] [KYUUBI #6740] [CI] update GHA docker/build-push-action from v5 to v6 to support build summary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :mag: Description ## Issue References ๐Ÿ”— This pull request fixes # ## Describe Your Solution ๐Ÿ”ง - update GHA docker/build-push-action from v5 to v6 to support build mmary https://docs.docker.com/build/ci/github-actions/build-summary/ ## Types of changes :bookmark: - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan ๐Ÿงช #### Behavior Without This Pull Request :coffin: #### Behavior With This Pull Request :tada: #### Related Unit Tests --- # Checklist ๐Ÿ“ - [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6740 from bowenliang123/docker-push-v6. Closes #6740 674cc15fc [Bowen Liang] update GHA docker/build-push-action from v5 to v6 to support build summary Authored-by: Bowen Liang Signed-off-by: Cheng Pan --- .github/workflows/master.yml | 2 +- .github/workflows/publish-snapshot-docker.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 91035feacbc..095f583d935 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -427,7 +427,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build Kyuubi Docker Image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: # passthrough CI into build container build-args: | diff --git a/.github/workflows/publish-snapshot-docker.yml b/.github/workflows/publish-snapshot-docker.yml index 67d56f10245..26f4679344a 100644 --- a/.github/workflows/publish-snapshot-docker.yml +++ b/.github/workflows/publish-snapshot-docker.yml @@ -40,7 +40,7 @@ jobs: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and Push Kyuubi Docker Image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: # build cache on Github Actions, See: https://docs.docker.com/build/cache/backends/gha/#using-dockerbuild-push-action cache-from: type=gha