From ded3ba73fbf68f2456b906be2db96057b4937238 Mon Sep 17 00:00:00 2001 From: Yutaka Kondo Date: Fri, 21 Jun 2024 11:29:27 +0900 Subject: [PATCH 1/2] update docker actions Signed-off-by: Yutaka Kondo --- .github/actions/docker-build/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/docker-build/action.yaml b/.github/actions/docker-build/action.yaml index 01ad08fa7b5..c4f35778214 100644 --- a/.github/actions/docker-build/action.yaml +++ b/.github/actions/docker-build/action.yaml @@ -62,7 +62,7 @@ runs: password: ${{ github.token }} - name: Run docker build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: docker/Dockerfile context: . From aa83932e973782294f34384c641d46de63e618aa Mon Sep 17 00:00:00 2001 From: Yutaka Kondo Date: Fri, 21 Jun 2024 12:50:52 +0900 Subject: [PATCH 2/2] update docker actions Signed-off-by: Yutaka Kondo --- .github/actions/docker-build-and-push/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/docker-build-and-push/action.yaml b/.github/actions/docker-build-and-push/action.yaml index e7586db3c99..e857117b57a 100644 --- a/.github/actions/docker-build-and-push/action.yaml +++ b/.github/actions/docker-build-and-push/action.yaml @@ -111,7 +111,7 @@ runs: if: ${{ github.event_name == 'push' || github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.artifacts-destination == 'registry') }} - uses: docker/bake-action@v4 + uses: docker/bake-action@v5 with: push: ${{ inputs.allow-push == 'true' }} files: | @@ -126,7 +126,7 @@ runs: - name: Build only if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.artifacts-destination == 'tarball' }} - uses: docker/bake-action@v4 + uses: docker/bake-action@v5 with: push: false files: |