From 089b6b9de7c9293a7a744e614cc09e16a4dec266 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 00:47:06 +0000 Subject: [PATCH] build(deps): bump docker/build-push-action from 4.2.1 to 5.0.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4.2.1 to 5.0.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/0a97817b6ade9f46837855d676c4cca3a2471fc9...0565240e2d4ab88bba5387d719585280857ece09) --- 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/at_server.yaml | 18 +++++++++--------- .github/workflows/at_server_dev_deploy.yaml | 2 +- .github/workflows/at_server_prod_deploy.yaml | 2 +- .github/workflows/promote_canary.yaml | 4 ++-- .github/workflows/ve_base.yaml | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/at_server.yaml b/.github/workflows/at_server.yaml index a75032778..e32526c39 100644 --- a/.github/workflows/at_server.yaml +++ b/.github/workflows/at_server.yaml @@ -171,7 +171,7 @@ jobs: ls -laR tools/build_virtual_environment/ve/* - name: Build docker image - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: file: tools/build_virtual_environment/ve/Dockerfile context: tools/build_virtual_environment/ve @@ -249,7 +249,7 @@ jobs: # Builds and pushes the secondary server image to docker hub. - name: Build and push secondary image for x64 id: docker_build_secondary - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: push: true provenance: false @@ -608,7 +608,7 @@ jobs: # Builds and pushes the at_virtual_env to docker hub. - name: Build and push id: docker_build - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: file: tools/build_virtual_environment/ve/Dockerfile.vip context: . @@ -662,7 +662,7 @@ jobs: # Builds and pushes the secondary server image to docker hub. - name: Build and push secondary image for amd64 and arm64 id: docker_build_secondary - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: push: true provenance: false @@ -717,7 +717,7 @@ jobs: # Builds and pushes the secondary server image to docker hub. - name: Build and push secondary image for amd64 and arm64 id: docker_build_observable_secondary - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: push: true provenance: false @@ -770,7 +770,7 @@ jobs: # Builds and pushes the secondary server image to docker hub. - name: Build and push secondary image for amd64 and arm64 id: docker_build_secondary - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: push: true provenance: false @@ -814,7 +814,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: file: tools/build_virtual_environment/ve/Dockerfile.vip context: . @@ -861,7 +861,7 @@ jobs: # Builds and pushes the secondary server image to docker hub. - name: Build and push secondary image for amd64 and arm64 id: docker_build_secondary - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: push: true provenance: false @@ -895,7 +895,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: file: tools/build_virtual_environment/ve/Dockerfile.vip context: . diff --git a/.github/workflows/at_server_dev_deploy.yaml b/.github/workflows/at_server_dev_deploy.yaml index 99ac3a7af..c386bba2b 100644 --- a/.github/workflows/at_server_dev_deploy.yaml +++ b/.github/workflows/at_server_dev_deploy.yaml @@ -31,7 +31,7 @@ jobs: # Build the Docker image for Dev - name: Build and push - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: file: packages/at_root_server/Dockerfile context: packages/at_root_server diff --git a/.github/workflows/at_server_prod_deploy.yaml b/.github/workflows/at_server_prod_deploy.yaml index 8e217922b..067efeafe 100644 --- a/.github/workflows/at_server_prod_deploy.yaml +++ b/.github/workflows/at_server_prod_deploy.yaml @@ -31,7 +31,7 @@ jobs: # Build the Docker image for Dev - name: Build and push - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: file: packages/at_root_server/Dockerfile context: packages/at_root_server diff --git a/.github/workflows/promote_canary.yaml b/.github/workflows/promote_canary.yaml index fc4ee34f0..b58b21b74 100644 --- a/.github/workflows/promote_canary.yaml +++ b/.github/workflows/promote_canary.yaml @@ -36,7 +36,7 @@ jobs: # Builds and pushes the secondary server image to docker hub. - name: Build and push secondary image for amd64 and arm64 id: docker_build_canary_to_prod - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: push: true provenance: false @@ -77,7 +77,7 @@ jobs: # Builds and pushes the secondary server image to docker hub. - name: Build and push virtualenv image for amd64 and arm64 id: docker_build_canary_to_vip - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: push: true file: tools/build_virtual_environment/ve/Dockerfile.canary_to_vip diff --git a/.github/workflows/ve_base.yaml b/.github/workflows/ve_base.yaml index 35895f827..347a4f2aa 100644 --- a/.github/workflows/ve_base.yaml +++ b/.github/workflows/ve_base.yaml @@ -25,7 +25,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: file: tools/build_virtual_environment/ve_base/Dockerfile push: true