From aa8fb4054f9958da494ec334d70a2bd5dcb2d3c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Jun 2023 15:01:42 +0000 Subject: [PATCH 1/2] Bump docker/build-push-action from 3 to 4 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v3...v4) --- 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/release-integration.yml | 2 +- .github/workflows/release-production.yml | 2 +- .github/workflows/rosetta.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-integration.yml b/.github/workflows/release-integration.yml index ad33430c823..4b845791159 100644 --- a/.github/workflows/release-integration.yml +++ b/.github/workflows/release-integration.yml @@ -53,7 +53,7 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Build and push images - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: build-args: VERSION=${{env.VERSION}} cache-from: type=gha diff --git a/.github/workflows/release-production.yml b/.github/workflows/release-production.yml index c486647271e..9632fcc7b08 100644 --- a/.github/workflows/release-production.yml +++ b/.github/workflows/release-production.yml @@ -54,7 +54,7 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Build and push images - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: build-args: VERSION=${{env.TAG}} cache-from: type=gha diff --git a/.github/workflows/rosetta.yml b/.github/workflows/rosetta.yml index 50bac738e24..60fc558ce49 100644 --- a/.github/workflows/rosetta.yml +++ b/.github/workflows/rosetta.yml @@ -43,7 +43,7 @@ jobs: echo "GIT_REF=${GIT_REF}" >> $GITHUB_ENV - name: Build Mirror Node All-in-One Docker Image and Export - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: build-args: GIT_REF=${{ env.GIT_REF }} cache-from: type=gha From e7600556fa60b78546e780b7e2b007289dcb903c Mon Sep 17 00:00:00 2001 From: Xin Li Date: Fri, 16 Jun 2023 10:20:10 -0500 Subject: [PATCH 2/2] set provenance: false Signed-off-by: Xin Li --- .github/workflows/release-integration.yml | 1 + .github/workflows/release-production.yml | 1 + .github/workflows/rosetta.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/release-integration.yml b/.github/workflows/release-integration.yml index 4b845791159..1b83b4dc96c 100644 --- a/.github/workflows/release-integration.yml +++ b/.github/workflows/release-integration.yml @@ -60,6 +60,7 @@ jobs: cache-to: type=gha,mode=max context: ${{env.CONTEXT}} platforms: linux/amd64, linux/arm64 + provenance: false push: true tags: ${{env.IMAGE}}:${{env.VERSION}},${{env.IMAGE}}:main,${{env.IMAGE}}:main-${{ github.sha }} diff --git a/.github/workflows/release-production.yml b/.github/workflows/release-production.yml index 9632fcc7b08..2c6b1a63876 100644 --- a/.github/workflows/release-production.yml +++ b/.github/workflows/release-production.yml @@ -61,6 +61,7 @@ jobs: cache-to: type=gha,mode=max context: ${{env.CONTEXT}} platforms: linux/amd64, linux/arm64 + provenance: false push: true tags: ${{env.IMAGE}}:${{env.TAG}},${{env.IMAGE}}:latest diff --git a/.github/workflows/rosetta.yml b/.github/workflows/rosetta.yml index 60fc558ce49..ce2aba0cef4 100644 --- a/.github/workflows/rosetta.yml +++ b/.github/workflows/rosetta.yml @@ -50,6 +50,7 @@ jobs: cache-to: type=gha,mode=max context: ./hedera-mirror-rosetta/container outputs: type=docker,dest=/tmp/${{ env.MODULE }}.tar + provenance: false tags: ${{ env.MODULE }}:latest - name: Upload Artifact