From 22a6acf56c3fabb9d21afe521fa79de9cd3db172 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 18:41:20 +0900 Subject: [PATCH] ci: bump docker/build-push-action from 5 to 6 (#10144) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci-main.yml | 2 +- .github/workflows/ci-outpost.yml | 2 +- .github/workflows/release-publish.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index c49a4a2359..9dc67ed945 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -240,7 +240,7 @@ jobs: - name: generate ts client run: make gen-client-ts - name: Build Docker Image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . secrets: | diff --git a/.github/workflows/ci-outpost.yml b/.github/workflows/ci-outpost.yml index 2d160cb9cf..23b7283b57 100644 --- a/.github/workflows/ci-outpost.yml +++ b/.github/workflows/ci-outpost.yml @@ -96,7 +96,7 @@ jobs: - name: Generate API run: make gen-client-go - name: Build Docker Image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: tags: ${{ steps.ev.outputs.imageTags }} file: ${{ matrix.type }}.Dockerfile diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 32016bf004..fefd0b694d 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -40,7 +40,7 @@ jobs: mkdir -p ./gen-ts-api mkdir -p ./gen-go-api - name: Build Docker Image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true @@ -94,7 +94,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build Docker Image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: true tags: ${{ steps.ev.outputs.imageTags }}