From f727dbcb2a77df898376dcb548e8e39086ca3c53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 10:24:17 +0000 Subject: [PATCH 1/3] build(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/build_wheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 7fada27493..96710ed9db 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -161,7 +161,7 @@ jobs: images: ghcr.io/deepmodeling/deepmd-kit - name: Build and push Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: source/install/docker push: ${{ github.repository_owner == 'deepmodeling' && github.event_name == 'push' && github.actor != 'dependabot[bot]' }} From 04d2032bdd2a6a5950534442dabafcc471c4480f Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Mon, 17 Jun 2024 17:05:00 -0400 Subject: [PATCH 2/3] set DOCKER_BUILD_NO_SUMMARY: true Signed-off-by: Jinzhe Zeng --- .github/workflows/build_wheel.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 96710ed9db..45221e8c52 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -162,6 +162,8 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v6 + env: + DOCKER_BUILD_NO_SUMMARY: true with: context: source/install/docker push: ${{ github.repository_owner == 'deepmodeling' && github.event_name == 'push' && github.actor != 'dependabot[bot]' }} From bf9e6ea43b0db7950cabe0409ddbbfcda9101aed Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Mon, 17 Jun 2024 17:18:05 -0400 Subject: [PATCH 3/3] Revert "set DOCKER_BUILD_NO_SUMMARY: true" This reverts commit 04d2032bdd2a6a5950534442dabafcc471c4480f. --- .github/workflows/build_wheel.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 45221e8c52..96710ed9db 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -162,8 +162,6 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v6 - env: - DOCKER_BUILD_NO_SUMMARY: true with: context: source/install/docker push: ${{ github.repository_owner == 'deepmodeling' && github.event_name == 'push' && github.actor != 'dependabot[bot]' }}