From 1cb4d6bec5393c60ae34a1c4bf03313a4279728f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 20:15:27 +0000 Subject: [PATCH] chore(deps): 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/workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 5860cc9..71ee87d 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -25,7 +25,7 @@ jobs: password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - name: Build docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 if: github.event_name == 'pull_request' with: file: Dockerfile @@ -33,7 +33,7 @@ jobs: tags: mitre-attack-navigator:latest - name: Build tag if: github.event_name != 'pull_request' - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v4 with: push: true platforms: linux/arm64, linux/amd64